is it possible to have city name tab after customer phone number in view orders?
Quite small code modification is required to do it
possible to know what is this code and where to place it?
Our specialists can add it for you on the paid basis
1 Like
To add this field to that page you need to do the following:
- You will need to extend the
fn_get_ordersfunction via hookget_orders. There, you need to add thes_cityfield to the list of selected fields in the$fieldsvariable, based on the conditions when orders are being selected from the orders.manage page. - Once added, you can use this field in the design/backend/templates/views/orders/manage.tpl template, more preferable - make the necessary changes via hooks
orders:manage_headerandorders:manage_data. There you will be able to use the$o.s_fieldvariable.
3 Likes
