Hi there
I have looked everywhere for that problem, got solution which didn't work at all. I need a quick help with this problem and if anyone know the solution I would much appreciate.
In Orders page there is a table that shows what customers has bought. In this table there are a few columns: (from the left) Products Models Tax
What I need is to put a new column with manufacturers name, somewhere between Products and Model.
I got one solution, tried it and it didn't work.
Here is what I got:
HTML Code:In your includes/templates/your_custom_template_name/tpl_account_history_default.php file, find: <td class="accountQuantityDisplay"><?php echo $order->products[$i]['qty'] . QUANTITY_SUFFIX; ?></td> add right below: <td class="accountProductManufacturers"><?php echo zen_get_products_manufacturers_name($order->products[$i]['id']); ?></td> Then, in your CSS file, you can create a new instance called: accountProductManufacturers and customize it, if you'd like. This should show the manufacturers name right between the products quantity ordered and the products name in the order's history from the store.



