Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • 7of9 Friend
    #190483

    Hi,

    Continuing with my site optimization, I have found out that the H1 Tag is doubled in all the pages other than the Home page.
    This is wrong, because it confuses the search engines. Normally only one H1 Tag should exist per page.
    I have solved the problem using the following code and I am sharing it with you, just in case anyone is interested to fix this in their site. The only side effect is that I am hiding the logo as well, but in my case, just because I changed the size of it, was just getting on the way. However, I am sure the JA staff can come up with a better approach that can show the logo.
    Here is how you do it. Change file: /templates/ja_hawkstore/tpls/blocks/header.php at line 22 (Logo)

    Previous code:

    <!-- LOGO -->
    <div class="span3 logo">
    <div class="logo-<?php echo $logotype ?>">
    <h1>
    <a href="<?php echo JURI::base(true) ?>" title="<?php echo strip_tags($sitename) ?>"<?php echo $logoimage ?>>
    <span><?php echo $sitename ?></span>
    </a>
    <small class="site-slogan hidden-phone"><?php echo $slogan ?></small>
    </h1>
    </div>
    </div>
    <!-- //LOGO -->

    New code:

    <!-- LOGO -->
    <div class="span3 logo">
    <div class="logo-<?php echo $logotype ?>">
    <?php if (!is_null($slogan)) : ?>
    <h1>
    <a href="<?php echo JURI::base(true) ?>" title="<?php echo strip_tags($sitename) ?>"<?php echo $logoimage ?>>
    <span><?php echo $sitename ?></span>
    </a>
    <small class="site-slogan hidden-phone"><?php echo $slogan ?></small>
    </h1>
    <?php endif; ?>
    </div>
    </div>
    <!-- //LOGO -->

    7of9 Friend
    #505364

    I forgot to mention that in order for the modification to work, you need to delete the slogan from the template Default theme, but leave it intact at the Home theme.

    Ninja Lead Moderator
    #505598

    Thanks for your tip

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

This topic contains 3 replies, has 2 voices, and was last updated by  Ninja Lead 11 years, 2 months ago.

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