darius
#1
Is there such?
For some orders need to keep info for little longer, but not too long, just to double check
there could be
bulk select orders
admin.php?dispatch=orders.manage
dropdown menu remove cc info. I think such feature was available long time ago.
Looks like code was removed from template only. PHP part is still there
http://prntscr.com/jxwwja
Try to open design/backend/templates/views/orders/manage.tpl and
add
{btn type="list" dispatch="dispatch[orders.remove_cc_info]" form="orders_list_form" class="cm-ajax cm-confirm"}
after
{btn type="delete_selected" dispatch="dispatch[orders.m_delete]" form="orders_list_form"}
(!) Not tested
darius
#3
Thanks again for help!
Added line like such
{capture name="buttons"}
{capture name="tools_list"}
{if $orders}
{btn type="list" text={__("bulk_print_invoice")} dispatch="dispatch[orders.bulk_print]" form="orders_list_form" class="cm-new-window"}
{btn type="list" text={__("bulk_print_pdf")} dispatch="dispatch[orders.bulk_print..pdf]" form="orders_list_form"}
{btn type="list" text={__("bulk_print_packing_slip")} dispatch="dispatch[orders.packing_slip]" form="orders_list_form" class="cm-new-window"}
{btn type="list" text={__("view_purchased_products")} dispatch="dispatch[orders.products_range]" form="orders_list_form"}
{btn type="list" text={__("remove_cc_info")} dispatch="dispatch[orders.remove_cc_info]" form="orders_list_form" class="cm-ajax cm-confirm"}
darius
#4
Looks like code was removed from template only. PHP part is still there
http://prntscr.com/jxwwja
Try to open design/backend/templates/views/orders/manage.tpl and
add
{btn type="list" dispatch="dispatch[orders.remove_cc_info]" form="orders_list_form" class="cm-ajax cm-confirm"}
after
{btn type="delete_selected" dispatch="dispatch[orders.m_delete]" form="orders_list_form"}
(!) Not tested
this has changes in 4.12.1
I still see the code in PHP in 4.12 :)
https://prnt.sc/w4px5l
darius
#6
Probably, but now dispatch= format is gone in tpls
not smart enough to adjust it ;)