In Sources/Subs.php
FIND around line 3716:
Code: [Select]
$buttons = array(
'home' => array(
ADD BETWEEN the upper two lines:
Code: [Select]
'sitehome' => array(
'title' => 'Home Page',
'href' => '
http://home.info',
'show' => true,
'sub_buttons' => array(
),
),
So it now Looks Like This:
Code: [Select]
$buttons = array(
'homepage' => array(
'title' => 'Home Page',
'href' => '
http://home.info',
'show' => true,
'sub_buttons' => array(
),
),
'home' => array(
This will add the Menu Tab "Home Page" to the Left. But with practice you can place a menu where you want it.