Jump to content

The Steiner

Clients
  • Posts

    16
  • Joined

  • Last visited

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by The Steiner

  1. I do agree with the users about the fact the drag and drop feature to re-order the links should encompass ALL the applications, and not have a category trump another. However, with a few tweeks to the global template you can make this happen. (Done on the Default skin, should apply to all 3.x skins.) Load up your Admin panel Go to the "Look & Feel" section Click corrisponding template's menu arrow Click "Manage Templates & CSS" Go to "Global Template" section (if not already loaded up) Click "globalTemplate" Locate <div id='primary_nav'> Directory Below should be a block that looks like this: <ul> <if test="showhomeurl:|:$this->settings['home_url']"> <li id='nav_home' class='left'><a href='{$this->settings['home_url']}' title='{$this->lang->words['homepage_title']}' rel="home">{$this->settings['home_name']}</a></li> </if> {parse variable="forumActive" default="" oncondition="IPS_APP_COMPONENT == 'forums'" value="active"} {parse variable="membersActive" default="" oncondition="IPS_APP_COMPONENT == 'members'" value="active"} {parse variable="helpActive" default="" oncondition="IPS_APP_COMPONENT == 'core' AND $this->request['module'] == 'help'" value="active"} <if test="!ipsRegistry::$applications['forums']['app_hide_tab']"><li id='nav_discussion' class='left {parse variable="forumActive"}'><a href='{parse url="act=idx" seotitle="false" base="public"}' title='{$this->lang->words['go_to_discussion']}'>{$this->lang->words['discussion']}</a></li></if> <if test="!ipsRegistry::$applications['members']['app_hide_tab']"><li id='nav_members' class='left {parse variable="membersActive"}'><a href='{parse url="app=members&amp;section=view&amp;module=list" base="public"}' title='{$this->lang->words['go_to_memberlist']}'>{$this->lang->words['tb_mlist']}</a></li></if> <if test="applicationsloop:|:is_array($header_items['applications']) AND count($header_items['applications'])"> <foreach loop="applications:$header_items['applications'] as $data"> <if test="showingapp:|:$data['app_show']"> {parse variable="appActive" default="" oncondition="$data['app_active']" value="active"} <li id='nav_app_{$data['app_dir']}' class="left {parse variable="appActive"}"><a href='{parse url="app={$data['app_dir']}" seotitle="false" base="public"}' title='{$this->lang->words['go_to_prefix']}{IPSLib::getAppTitle( $data['app_dir'] )}'>{IPSLib::getAppTitle( $data['app_dir'] )}</a></li> </if> </foreach> </if> </ul> Simply Copy & Paste <if test="applicationsloop:|:is_array($header_items['applications']) AND count($header_items['applications'])"> <foreach loop="applications:$header_items['applications'] as $data"> <if test="showingapp:|:$data['app_show']"> {parse variable="appActive" default="" oncondition="$data['app_active']" value="active"} <li id='nav_app_{$data['app_dir']}' class="left {parse variable="appActive"}"><a href='{parse url="app={$data['app_dir']}" seotitle="false" base="public"}' title='{$this->lang->words['go_to_prefix']}{IPSLib::getAppTitle( $data['app_dir'] )}'>{IPSLib::getAppTitle( $data['app_dir'] )}</a></li> </if> </foreach> </if> Paste the block under <if test="showhomeurl:|:$this->settings['home_url']"> <li id='nav_home' class='left'><a href='{$this->settings['home_url']}' title='{$this->lang->words['homepage_title']}' rel="home">{$this->settings['home_name']}</a></li> </if> Replace <if test="showingapp:|:$data['app_show']"> With (Replace <Your CCS's Public Title> with your CCS's public title, and without the <> symbols) <if test="showingapp:|:$data['app_show'] AND $data['app_title'] == '<Your CCSs Public Title>'"> And back on the original code block that we copy and pasted from... Replace <if test="showingapp:|:$data['app_show']"> With <if test="showingapp:|:$data['app_show'] AND $data['app_title'] != '<Your CCSs Public Title>'"> To make sure we don't show the CCS tab twice. Rinse, lather, repeat for other other applications you with to trump the system's links. Hope this helps.
  2. I would also like to have that feature. Been using phpbb since 2 years and now converted forums to IPB. In many areas I feel IPB lacks couple of things.
×
×
  • Create New...