Login     Sign up
How to disable the "my apps" on the "blue" theme?
Thomas Ramsey (@theartistconnect)
Join date: Oct 27th 2010
Community posts: 38
View Profile
Send Message

I am looking to disable "My apps" on the menu bar-or just rename "my apps". Does anyone know where/how?

Much thanks!

173 months ago
Jcow Master (@falcone)
Join date: Sep 2nd 2010
Community posts: 917
View Profile
Send Message

page.tpl.php of blue theme

put / before and / after the code or just delete it

[code]
/ if($client['id']) {
echo '<li>'.url('dashboard',t('My apps')).'
<ul class="subnav">';
if (is_array($personal_menu)) {
foreach ($personal_menu as $item) {
if ($item['path'] != 'account') {
echo '<li>'.url($item['path'],
'<div style="padding:3px 0 3px 23px;background:url('.uhome().'/modules/'.$item['app'].'/icon.png) 0 1px no-repeat">'.t($item['name']).'</div>'
).'</li>';
}
}
}
echo '</ul>';
echo '</li>';
}
/
[/code]

173 months ago
fantastica (@fantastica)
Join date: Nov 26th 2010
Community posts: 82
View Profile
Send Message

[quote=falcone]page.tpl.php of blue theme

put / before and / after the code or just delete it

[code]
/ if($client['id']) {
echo '<li>'.url('dashboard',t('My apps')).'
<ul class="subnav">';
if (is_array($personal_menu)) {
foreach ($personal_menu as $item) {
if ($item['path'] != 'account') {
echo '<li>'.url($item['path'],
'<div style="padding:3px 0 3px 23px;background:url('.uhome().'/modules/'.$item['app'].'/icon.png) 0 1px no-repeat">'.t($item['name']).'</div>'
).'</li>';
}
}
}
echo '</ul>';
echo '</li>';
}
/
[/code] [/quote]

hi falcon
the code is delete the "my apps" frome the menu , i want it still there but with no link to dashboard . how to do this ??

thank you

172 months ago