Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • mberwing Friend
    #147107

    Hi,

    is it possible to disable the position “footnav” just on the frontpage while it should be visible on all other pages ?

    I do not want to have the “Mobile Version” and “TOP” on homepage ….but on the rest of the pages only.

    Css Magician Friend
    #327563

    Dear Mberwing,

    Please open file templatesja_kyanite_iilayoutsblocksfooter.php and edit as follow:

    change :


    <div id="ja-footer" class="wrap">
    <div class="main clearfix">

    <div class="ja-footnav clearfix">
    <jdoc:include type="modules" name="footnav" />
    <ul class="ja-links">
    <li class="layout-switcher"><?php $this->loadBlock('usertools/layout-switcher') ?></li>
    <li class="top">
    <?php if ($this->isIE()) { ?>
    <a href="javascript:scroll(0,0)" title="<?php echo JText::_('Back to Top')?>"><?php echo JText::_('Top')?></a>
    <?php } else { ?>
    <a href="#Top" title="<?php echo JText::_('Back to Top')?>"><?php echo JText::_('Top')?></a>
    <?php } ?>
    </li>
    </ul>
    </div>

    <div class="inner">
    <div class="ja-copyright">
    <jdoc:include type="modules" name="footer" />
    </div>
    </div>

    </div>
    </div>

    to :


    <div id="ja-footer" class="wrap">
    <div class="main clearfix">

    <div class="ja-footnav clearfix">
    <jdoc:include type="modules" name="footnav" />
    <?php if (!$this->isFrontPage()) :?>
    <ul class="ja-links">
    <li class="layout-switcher"><?php $this->loadBlock('usertools/layout-switcher') ?></li>
    <li class="top">
    <?php if ($this->isIE()) { ?>
    <a href="javascript:scroll(0,0)" title="<?php echo JText::_('Back to Top')?>"><?php echo JText::_('Top')?></a>
    <?php } else { ?>
    <a href="#Top" title="<?php echo JText::_('Back to Top')?>"><?php echo JText::_('Top')?></a>
    <?php } ?>
    </li>
    </ul>
    <?php endif; ?>
    </div>

    <div class="inner">
    <div class="ja-copyright">
    <jdoc:include type="modules" name="footer" />
    </div>
    </div>

    </div>
    </div>

    Please feel free to contact us if we are of any further assistance.

    mberwing Friend
    #327591

    Perfect…..it works !

    Thanks a lot for the very fast reply.

Viewing 3 posts - 1 through 3 (of 3 total)

This topic contains 3 replies, has 2 voices, and was last updated by  mberwing 14 years, 5 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum