Hi guys,
I have 2 menus in my cs-cart website
[attachment=11095:cs-cart_menu.PNG]
I'm using responsive theme. How do I rename each menus differently?
Hi guys,
I have 2 menus in my cs-cart website
[attachment=11095:cs-cart_menu.PNG]
I'm using responsive theme. How do I rename each menus differently?
Hi helmi_pts,
You can edit it in the
[your_cs_cart_root_directory]/design/themes/responsive/templates/blocks/topmenu_dropdown.tpl
file.
Try creating separate language variables for each menu and add a special condition for the
{__("menu")}
line of code using the
{hook name="blocks:topmenu_dropdown_top_menu"}
hook.
Best regards,
Oleg Gorshkov
Try to replace:
{__("menu")}
with
{$block.name}
Menu title will be replaced with the block name in this case
Thanks for the reply. I'll use
{$block.name}
as it is easier implement.