Hi,
I have created a new "Home" Tab. I have renamed the page showing my forum into an action:
scripturl . '?action=forum';
I want to make a link tree for my new "Home" page. SO that when i click on
www.mydomain.com/index.php?action=forum
The link tree will show
xxxx >> Forum
where xxx is my homepage name.
May I enquire how do i do that?
Do you still need help with this?
To be honest I don't know how to do it.
But take a look at this post: http://www.simplemachines.org/community/index.php?topic=185202.0
Maybe you can figure it out from that mod :)
Anyway, let me know if you need help with this. Maybe I can get somebody from customization team to help you out.
Load.php
find:
$context['linktree'] = array();
replace with:
$context['linktree'] = array(array('url' => $scripturl . '?action=forum', 'name' => 'Forum'));
Quote from: jkay on July 08, 2007, 03:54:00 PM
I have renamed the page showing my forum into an action:
scripturl . '?action=forum';
How did you do that? Please let me know.