UB Top Menu

Hi,
Some of menu parent category names are long so I insert a  <br /> break in the name to wrap them over two lines so they look like this: https://gyazo.com/a11adacecb27207fe0c1616d7a9ca5af
But this has created problems in admin as now when I Manage the Menu items it looks like this: https://gyazo.com/aa012706247f21e0cb6894b1d6e23b5d  making the menu items mostly unreadable.
Can you offer any help ?
thanks.
Nick

1 answer

Profile photo of Mall Staff 184060.00 $tone November 28, 2017
Public

Hi there,

But this has created problems in admin as now when I Manage the Menu items it looks like this: https://gyazo.com/aa012706247f21e0cb6894b1d6e23b5d  making the menu items mostly 

To solve the issue as you mentioned, you could do with steps as followings:
+ Open the php file at path: app/code/Ubertheme/UbMegaMenu/Block/Adminhtml/TreeMenu.php
and find to the code line:

<span class="menu-item-title" id="label_show' . $value['id'] . '">' . $icon . $value['label'] . '</span>

and replace it by code line:

<span class="menu-item-title" id="label_show' . $value['id'] . '">' . $icon . strip_tags($value['label']) . '</span>

And tell me know how it goes then.
Regards,
Mall.

#1

Please login or Register to Submit Answer

Written By

Comments