I'm trying to optimize our SEO for the following kind of page: http://www.skynet.be/actu-sports/dossier/1549514/ces-acteurs-morts-sur-le-tournage#slide=5
Those are basically slideshows where all the content is available on the same page to avoid page reload but only the active slide is visible for the user. Google has indexed those pages with all the content, even the hidden one but we have two issues:
We can access any slides by using #slide=x in the url but Google doesn't understands that. The consequence is that the result shown in Google search pages always takes the title and description from the first slide.
Would it solve the problem if we used the ajax solution with !#slideX instead? We want to avoid having page reloads so using ? + parameters doesn't look like the best option.
It looks like content in hidden tabs is given less priority. Before implementing those slideshows where everything is on the same page, we were providing separate pages for each slide. SEO traffic went seriously down since we brought everything under the same page.
Any idea of what we could do to improve the visibility of hidden content for Google?
Each slide is "stored" in the following structure:
<section class="info">
<div class="adv-copyright-bar"></div>
<h3 class="slide-title">SLIDESHOW TITLE</h3>
<div class="slide-description">SLIDESHOW DESCRIPTION</div>
</section>
The active slideshow is set to display:block while non-active slideshows are set to display:none. JS controls the behaviour (hide/display) but JS is minified, I can't really take it out of the global JS file.
Thanks! Laurent
after some research I came accross something that might be a good option: https://moz.com/blog/create-crawlable-link-friendly-ajax-websites-using-pushstate
It is ajax based but proposes a solution for clean URLs. I'll give it a try to see if it works.
Thanks Laurent