-
AuthorPosts
-
7of9
Friend
7of9
- Join date:
- December 2010
- Posts:
- 579
- Downloads:
- 81
- Uploads:
- 66
- Thanks:
- 162
- Thanked:
- 25 times in 3 posts
September 11, 2013 at 8:07 am #190483Hi,
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
7of9
- Join date:
- December 2010
- Posts:
- 579
- Downloads:
- 81
- Uploads:
- 66
- Thanks:
- 162
- Thanked:
- 25 times in 3 posts
September 11, 2013 at 12:49 pm #505364I 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.
1 user says Thank You to 7of9 for this useful post
Ninja Lead
Moderator
Ninja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
-
AuthorPosts
This topic contains 3 replies, has 2 voices, and was last updated by
Ninja Lead 11 years, 4 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum