Customization > Custom Theme Tutorials

Black Rain 1.1.7 (Outdated)

(1/1)

Manu:
Open the index.template.php of Black Rain with your text editor.

Search for

--- Code: ---// Show the [help] button.
--- End code ---

Replace with

--- Code: ---// Show the [forum] button.
if(!empty($context['portalactive']))
    echo '<li', $current_action == 'forum' ? ' id="chosen"' : '', '><a href="', $scripturl, '?action=forum"><span>' . $txt['sp-forum'] . '</span></a></li>';

// Show the [help] button.
--- End code ---

Search for

--- Code: ---$current_action = 'search';
--- End code ---

Replace with

--- Code: ---$current_action = 'search';
   if ((isset($_GET['board']) || isset($_GET['topic']) || in_array($context['current_action'], array('unread', 'unreadreplies'))) && !empty($context['portalactive']))
      $current_action = 'forum';
   if ($context['current_action']=='spadmin')
      $current_action = 'admin';
--- End code ---

Search for

--- Code: ---, 'login', 'help', 'pm'
--- End code ---

Replace with

--- Code: ---, 'login', 'help', 'pm', 'forum', 'spadmin'
--- End code ---

Done and button "Forum" will be shown in Black Rain 1.1.7

Nathaniel:
Moved to the 'Custom Theme Tutorials ' board. Thanks you for making this tutorial. :)

I have corrected one issue, the first edit need <span> tags around the 'Forum' text.

Navigation

[0] Message Index

Go to full version