Beginner Question

edited April 2009 in Vanilla 1.0 Help
My forum here located at: http://www.lensaunders.com/peanuts/forum84/ I used to have a link on the top with the other tabs that said home page, linking back to the main home page. I just noticed it was not there, and I forgot how to place that link back. It used to be right before the discussion tab on the top, along with the other links. I hope this makes sense.

Comments

  • edited September 2009
    Create an extension with this in the default.php file:

    <?php /* Extension Name: Home Page tab Extension Url: http://lussumo.com/community/ Description: Adds a link to my home page Version: 1.0 Author: Matthew Pietz Author Url: http://matthewpietz.me/ */ // No point in doing this on the people page... if (!in_array($Context->SelfUrl, array('people.php'))) { // Tab Text, Value, Url, Attributes, Order $Menu->AddTab('Home Page', 'home', 'http://matthewpietz.me/', '', $Configuration['TAB_POSITION_DISCUSSIONS']-1); }
    Modify as necessary.
Sign In or Register to comment.