- Posts: 2
- Thank you received: 0
Hot Image slider and SEO....
-
vivitore
Inactive member - Topic Author
- New Member
Less
More
13 years 7 months ago #7950
by vivitore
Hot Image slider and SEO.... was created by vivitore
Hello, thanks for your free module, looks really profesional.
However we are worried about the effect on SEO, is the actual text inside the images any use for search engines?
We use your component here www.comenaranjas.com/variedades.html
for a concrete section explaining some fruit types but we are worried that the text description of the images is no use for a google search. We plan to use more text on those images description and just wondering about this.
We know google doesnt like flash and javascript so just a bit worried about this...
Thanks
However we are worried about the effect on SEO, is the actual text inside the images any use for search engines?
We use your component here www.comenaranjas.com/variedades.html
for a concrete section explaining some fruit types but we are worried that the text description of the images is no use for a google search. We plan to use more text on those images description and just wondering about this.
We know google doesnt like flash and javascript so just a bit worried about this...
Thanks
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 7 months ago #7956
by ivan.milic
Replied by ivan.milic on topic Re: Hot Image slider and SEO....
I could describe that module design in terms of SEO friendlessness with grade 7 of 10. SE Robot treats HTML as text and all the content is there , although descriptions are placed in json array witch is not so good there are still visible to robot which is very good. Robot see the page as you see it when you go to "View source" option in your browser.
Please Log in to join the conversation.
-
vivitore
Inactive member - Topic Author
- New Member
Less
More
- Posts: 2
- Thank you received: 0
13 years 7 months ago #7969
by vivitore
Replied by vivitore on topic Re: Hot Image slider and SEO....
Thanks for the info, I'm happy knowing the text is visible for robots, however would be nice if it could be improved somehow in future versions thinking in SEO terms.
Cheers
Cheers
Please Log in to join the conversation.
-
web-marketing-advisor
Inactive member - New Member
Less
More
- Posts: 2
- Thank you received: 0
13 years 7 months ago - 13 years 7 months ago #8474
by web-marketing-advisor
Replied by web-marketing-advisor on topic Re: Hot Image slider and SEO....
For improved seo make sure that your image file names contain keywords and not files named image1, image2 etc.
However, what would improve this module would be the ability to specify the image alt tag. I cannot see any way to do this. Anybody?
However, what would improve this module would be the ability to specify the image alt tag. I cannot see any way to do this. Anybody?
Last edit: 13 years 7 months ago by web-marketing-advisor. Reason: clarity
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 7 months ago #8475
by ivan.milic
Replied by ivan.milic on topic Re: Hot Image slider and SEO....
Hi,
open mod_hot_image_slider\tmpl\default.php
find this:
<img id="slide-img-<?php echo $imageCounter; ?>" src="<?php echo $mosConfig_live_site; ?>/<?php echo $imageFolder ?>/<?php echo $imageArray[$imageCounter]; ?>" class="slide" alt="" />
and modify alt attribute value like this:
<img id="slide-img-<?php echo $imageCounter; ?>" src="<?php echo $mosConfig_live_site; ?>/<?php echo $imageFolder ?>/<?php echo $imageArray[$imageCounter]; ?>" class="slide" alt="<?php echo $imageDescArray[$imageCounter];?>" />
open mod_hot_image_slider\tmpl\default.php
find this:
<img id="slide-img-<?php echo $imageCounter; ?>" src="<?php echo $mosConfig_live_site; ?>/<?php echo $imageFolder ?>/<?php echo $imageArray[$imageCounter]; ?>" class="slide" alt="" />
and modify alt attribute value like this:
<img id="slide-img-<?php echo $imageCounter; ?>" src="<?php echo $mosConfig_live_site; ?>/<?php echo $imageFolder ?>/<?php echo $imageArray[$imageCounter]; ?>" class="slide" alt="<?php echo $imageDescArray[$imageCounter];?>" />
The following user(s) said Thank You: web-marketing-advisor
Please Log in to join the conversation.
-
web-marketing-advisor
Inactive member - New Member
Less
More
- Posts: 2
- Thank you received: 0
13 years 7 months ago #8478
by web-marketing-advisor
Replied by web-marketing-advisor on topic Re: Hot Image slider and SEO....
Yep, great that works thanks , it puts the image description into the alt tag.
To get the image title instead replace with:
or to get the image filename in the alt tag then replace with
To get the image title instead replace with:
Code:
<img id="slide-img-<?php echo $imageCounter; ?>" src="<?php echo $mosConfig_live_site; ?>/<?php echo $imageFolder ?>/<?php echo $imageArray[$imageCounter]; ?>" class="slide" alt="<?php echo $imageTitleArray[$imageCounter];?>" />
or to get the image filename in the alt tag then replace with
Code:
<img id="slide-img-<?php echo $imageCounter; ?>" src="<?php echo $mosConfig_live_site; ?>/<?php echo $imageFolder ?>/<?php echo $imageArray[$imageCounter]; ?>" class="slide" alt="<?php echo $imageArray[$imageCounter];?>" />
Please Log in to join the conversation.
Time to create page: 0.181 seconds