Mobile app version of vmapp.org
Login or Join
Correia994

: Jumbled Up Text - how does it impact SEO? We have a website that contains company profile pages. Each page has information on a company, the information is all displayed as text to users

@Correia994

Posted in: #Seo

We have a website that contains company profile pages. Each page has information on a company, the information is all displayed as text to users who are logged in.

We are now planning to allow users who are logged out to see parts of profile pages. We are doing this for SEO and to gain search traffic.

The logged out view shows some parts of a profile as one would see if they were logged in, and other parts are blurred out. We blurred them using CSS, and so that a visitor cannot view the text in the page source we also jumbled up the words.

Search engines will see this jumbled up text. Is this bad for SEO? Should we scrap the jumbled up text idea and come up with a different solution?

Thank you!

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Correia994

1 Comments

Sorted by latest first Latest Oldest Best

 

@Speyer207

Having lots of pages that make no sense to the search engines such as Google is not going to help and a problem you face is juice is leaked to those pages as well as diluting your authority on the domain as a whole.

Since these pages hold no value to search engines and the chances are they will never be ranked your best of using:


blocking search bots on these URLS.
using meta noindex, nofollow on the pages.
Using nofollow links internally to these pages, normally I'm against internal no-follows but if you have a page such a /users/ then no-following on the top level only will block juice being feed.


Now with this said if some to a lot of content is displayed on these pages then I would ignored the above and rather than using CSS/PHP to block the text and confusing the search engines I would use something like a div background element, this way Google will not factor it into the search results while giving people the idea of the blocked content.

Example HTML:

<div id="profile">
<div class="content">
<p>I am content that everyone can see</p>
</div>
<div class="hidden"> </div>
</div>


Example CSS:

.hidden {background:url("blur.png")


So every profile page would look the same but give the impression you need without factoring in random text:

blur www.bybe.net/downloads/blur.png

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme