Skin Selector in Main Menu under Profile.
If skin selection is turned off, this still shows.
I see why, there is nothing about the setting in the show part in the code: Subs.php
Code: [Select]
Seems it should be something like:
Code: [Select]
However, that leaves the line below it still showing.
Also, I wonder, is there any real reason to keep this in the menu?
If skin selection is enabled, then there's the drop down selector in sidebar.
If skin selection is turned off, this still shows.
I see why, there is nothing about the setting in the show part in the code: Subs.php
'skin' => array(
'title' => $txt['change_skin'],
'href' => 'http://wedge.org/do/skin/',
'show' => allowedTo(array('profile_extra_any', 'profile_extra_own')),
),
'',
Seems it should be something like:
'skin' => array(
'title' => $txt['change_skin'],
'href' => 'http://wedge.org/do/skin/',
'show' => allowedTo(array('profile_extra_any', 'profile_extra_own') && empty($settings['theme_allow'])),
),
'',
However, that leaves the line below it still showing.
Also, I wonder, is there any real reason to keep this in the menu?
If skin selection is enabled, then there's the drop down selector in sidebar.
This topic was marked solved by 


