To make the Topics tab active by default, edit the Board Index -> hookWatchedItems skin template, find this code:
Edit the /public/js/ips.hooks.js file, and change this code:
<ol class='tab_bar no_title mini'>
<li id='tab_link_forums' class='tab_toggle active clickable'>{$this->lang->words['watched_forums']}</li>
<li id='tab_link_topics' class='tab_toggle clickable'>{$this->lang->words['watched_topics']}</li>
</ol>
<div id='tab_content_forums' class='tab_toggle_content'>Change it to:<ol class='tab_bar no_title mini'>
<li id='tab_link_forums' class='tab_toggle clickable'>{$this->lang->words['watched_forums']}</li>
<li id='tab_link_topics' class='tab_toggle active clickable'>{$this->lang->words['watched_topics']}</li>
</ol>
<div id='tab_content_forums' class='tab_toggle_content' style='display:none;'>Find:<div id='tab_content_topics' class='tab_toggle_content' style='display:none;'>Change it to:
<div id='tab_content_topics' class='tab_toggle_content'>Save the template, repeat for each skin.
Edit the /public/js/ips.hooks.js file, and change this code:
activeTab: 'forums',To this:
activeTab: 'topics',Save and upload.
- Olivier Turbis likes this











