Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Baden

    (@baden03)

    There are a few options you have here.

      li> Use a noindex meta tag, to prevent the entire page from being indexed.

    1. Use an image instead of text for your expanded content.
    2. Write the non-indexable content via external Javascript file located in a robots-excluded directory
    3. Insert the non-indexable content via a borderless iframe containing a meta noindex element/excluded by robots.txt
    4. Finally, there is an (un-documented) feature you might try. Using this will prevent search engines from indexing all of the enclosed expand elements:
      Wrap your expand elements with a div, and assign this div a class of content_collapse_wrapper like so:

      <div class="content_collapse_wrapper">
      [expand title="tirgger1"]content1[/expand]
      ...
      [expand title="tirggerN"]contentN[/expand]
      </div>

      This overrides the default behavior of content being visible—then once the page loads—hidden with javascript. Wrapping your expands in a content_collapse_wrapper div will initially present the content as display:none, then use javascript to SHOW the items. Because search engine spiders (normally) do not execute javascript, they will (normally) not index hidden items.

    Thread Starter wowordpress

    (@wowordpress)

    Thank you Baden

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: jQuery Collapse-O-Matic] How to make it NOT seo friendly? Hide content from crawler?’ is closed to new replies.