Hello,
Im custimising a theme. The index.template.php file for the special theme.
I've added some buttons, working good.
Example:
echo '
<li ' , $current_action=='forum' ? ' class="chosen"' : '' , '><a href="', $scripturl, '?action=forum">Forum<span>Forumet</span></a>';
But now i want to add a page, not a action. How do i do that. I'm kinda noob so xD
I we're trying like:
echo '
<li ' , $current_page=='forum' ? ' class="chosen"' : '' , '><a href="', $scripturl, '?page=forum">Forum<span>Forumet</span></a>';
As you can se i replaced action with page. Can't get it to work, and no, im not trying to link to forum, im trying to link to a special map in my www directory.
Example:
mywebsite.com/directory
I'm trying to link it to the directory
Thanks!
/Molo