Hello
I use an override for products page and for the product titles.
I try to change the titles on your module but i only succeded to add the category name.Please tell me how i add the manufacturer name on the title.
On default_items.php
i changed
<?php echo VmCategoriesFullHelper::truncate($item->title, (int)$params->get('item_title_max_characs', 25)); ?>
to
<?php echo $items->category_name ?> <?php echo $items->mf_name ?> <?php echo VmCategoriesFullHelper::truncate($item->title, (int)$params->get('item_title_max_characs', 25)); ?>
It shows the category name but the manufacturer no.Can you please tell me how i can add the manufacturer name?
Thank you