Change / remove "Submenu" and "Smart submenu" labels (MQ8)
#1
Hi, I am using Leia and MQ8 (recently upgraded from Krypton/MQ7). New skin is fantastic. I am looking for assistance with removing the "Submenu" and "Smart submenu" labels when you drop down from the Main Menu. So, when I am on Movies on the main menu and press Down, it shows the submenu items but above those it shows "Submenu". How do I remove this? I have searched and searched for hours but cannot find the file where this is contained. Same goes for "Smart submenu.


Image

Image

Thanks in advance
Reply
#2
Don't have one-way to remove submenu and smartsubmenu labels, you need edit skin code.

here the code line 84 includesvariables.xml file
Code:
</variable>
    <!-- ########## SUBMENU - STATUS ########## -->
    <variable name="submenu_status">
        <value condition="![Window.IsVisible(1165) | Window.IsVisible(1172)]">$LOCALIZE[1034]</value>
        <value condition="Window.IsVisible(1165)">$LOCALIZE[31849]</value>
    </variable>

to
Code:
</variable>
    <!-- ########## SUBMENU - STATUS ##########
    <variable name="submenu_status">
        <value condition="![Window.IsVisible(1165) | Window.IsVisible(1172)]">$LOCALIZE[1034]</value>
        <value condition="Window.IsVisible(1165)">$LOCALIZE[31849]</value>
    </variable> -->

Image
MediaBrazil forum Website - Youtube Channel
MQ9-1.6.0.29 - 09.15.2023 - Aeon MQ Skin Team
MarcosQui Website Donate and support us.
Reply
#3
Thank you, Wanilton. Will try that tonight. Will that work for both the "Submenu" label and the "Smart submenu" label?
Reply
#4
Yes, will work.
MediaBrazil forum Website - Youtube Channel
MQ9-1.6.0.29 - 09.15.2023 - Aeon MQ Skin Team
MarcosQui Website Donate and support us.
Reply
#5
Thanks, Wanilton. Works like a dream.
Reply
#6
(2019-07-04, 12:29)Wanilton Wrote: Don't have one-way to remove submenu and smartsubmenu labels, you need edit skin code.

here the code line 84 includesvariables.xml
Code:
</variable>
    <!-- ########## SUBMENU - STATUS ########## -->
    <variable name="submenu_status">
        <value condition="![Window.IsVisible(1165) | Window.IsVisible(1172)]">$LOCALIZE[1034]</value>
        <value condition="Window.IsVisible(1165)">$LOCALIZE[31849]</value>
    </variable>

to
Code:
</variable>
    <!-- ########## SUBMENU - STATUS ##########
    <variable name="submenu_status">
        <value condition="![Window.IsVisible(1165) | Window.IsVisible(1172)]">$LOCALIZE[1034]</value>
        <value condition="Window.IsVisible(1165)">$LOCALIZE[31849]</value>
    </variable> -->
Image 
hi can you please tell me where the code is stored/called as it is not what I thought.
I found Skin Settings.xml in the app data / addons but on line 84 there is no code like you have shown.
Reply
#7
Scrape that just re read and found it . Thanks
Reply
#8
It´s was write in the previous post

here the code line 84 includesvariables.xml file
MediaBrazil forum Website - Youtube Channel
MQ9-1.6.0.29 - 09.15.2023 - Aeon MQ Skin Team
MarcosQui Website Donate and support us.
Reply
#9
(2019-07-07, 15:50)Wanilton Wrote: It´s was write in the previous post

here the code line 84 includesvariables.xml file

Hi Wanilton, I would need to create customized menus and related submenus that are different from each other. In each new menu the skin clone the same submenus as the others. There's a way?
Reply
#10
@EnzymeX 

No in MQ8, Marcos explains why a few times here about it.

MQ9 is independent again, so will be possible to have different items.
MediaBrazil forum Website - Youtube Channel
MQ9-1.6.0.29 - 09.15.2023 - Aeon MQ Skin Team
MarcosQui Website Donate and support us.
Reply
#11
(2021-03-28, 13:57)Wanilton Wrote: @EnzymeX 

No in MQ8, Marcos explains why a few times here about it.

MQ9 is independent again, so will be possible to have different items.

Thank you very much for the answer. I would try Aeon Mq9, 
is it paid for now? how does it work?
Reply
#12
(2021-03-28, 14:28)EnzymeX Wrote:
(2021-03-28, 13:57)Wanilton Wrote: @EnzymeX 

No in MQ8, Marcos explains why a few times here about it.

MQ9 is independent again, so will be possible to have different items.

Thank you very much for the answer. I would try Aeon Mq9, 
is it paid for now? how does it work?

Check our FAQ about it.
MediaBrazil forum Website - Youtube Channel
MQ9-1.6.0.29 - 09.15.2023 - Aeon MQ Skin Team
MarcosQui Website Donate and support us.
Reply

Logout Mark Read Team Forum Stats Members Help
Change / remove "Submenu" and "Smart submenu" labels (MQ8)2