WordPress Plugin: Text Expander

Meine SoftwareSometimes you may want to add information to your blogposts, which aren’t that essential. For example the version-history of all my tools is cool, but may only be interesting for a few users. Website-elements which are collapsable help avoiding visual noise these days and give control to the user, what they want to see. Dagon Design developed a WordPress-Plugin called “Expanding Text” which enables a blogger to make any part of a post collapsable. I wasn’t entirely convinced with it, so I forked my own plugin.

Improvements compared to Expanding Text

  • A double-arrow is shown next to the expand-link, which indicates whether the part is collapsed or expanded next
  • the expand-part will expand via a jQuery-animation. This looks a lot better, than having the text just appear all of the sudden.

Download

in WordPress’ Plugin Directory or

Wordpress Text Expander 0.3 (6.71 kB) - 751 hits

Usage

Make sure to leave the space after the first bracket out!

[EXPAND Click to expand!]

This is our beautiful text.

[/EXPAND]

That’s how it will look:

This is our beautiful text.

Customization

You can style the expanded section to your needs by assigning attributes to the class .te_div in your design’s CSS-file.

e.g. with a thick border:

.te_div {

border: 4px solid #DDDDDD;

}

Feel free to tell me in the comments or my think-tank if you got ideas for further imrprovements!

Related Posts

  • D3signr

    Great plugin! Just what I needed! Just one question, is it possible to downsize the white space from the text expander?

    For example url: http://www.chabelle.be/WP/?page_id=181 
    Between the ‘lees meer’ (read more) and the line underneath it (with ‘top’ on the right) is many white space, is it possible to reduce this?

    Anyone who can help me with this?

    • http://www.ali.dj Hedgehog

      You could add this to your css-file:

      .te_div {
      margin-top: -20px;
      }

      I haven’t tested it but it should work.

  • Linda

    Ahh, tank you! I did manage to add the class. But I still can´t style the actual link, in this case a font. Can u see what I´m getting wrong? Url: test.syndrommedia.se.  I use your plugin on the post “Case”.

    • Linda

      Argh, just delete that. I figured it out, thanks for the help!

  • Anna

    Hi, great job, love the plugin! Could you please let me know how I can add a custom collapse text?

  • Linda

    Hello, great plugin! But I haven´t really understood how I can style the expand-link with css. Can you explain?

    • Arne

      Hello Linda,
      he didn’t added a class or id to style the expand-link, you only can style the expanded text with the class above. ( .te_div )

      If you want to style the expand-link, you have to add a class or an id in the php-file.

      Navigate to your plugin-overview in the dashboard go to text-expander plugin and click edit.
      Make sure you edit the file text-expander/text-expander.php.
      Scroll down to this text:
              $new_string = ‘‘;
              $new_string .= $sdesc . ‘
      ‘ . “n”;
              $new_string .= ”;
              $new_string .= ‘expander_hide(‘#te’ . $rnum . ”);’;

      And Change it to:
              $new_string = ‘‘;
              $new_string .= $sdesc . ‘
      ‘ . “n”;
              $new_string .= ”;
              $new_string .= ‘expander_hide(‘#te’ . $rnum . ”);’;

      So now you can style your expand link in css with the class .te_header

      greetings from germany

    • Arne

      Sorry Linda,
      in the comments here the a-tag will not be shown.
      but i hope you understood where you have to add.

  • Arne

    Hi, danke für das tolle Plugin. Ich habe es nun nach Benutzerwünschen modifiziert, nun würde ich aber gerne den Pfei in z.B. ein Plus ändern und wenn es aufgeklappt ist in ein Minus. Wo finde ich diese Einstellung?

    Seite: http://www.thomas-reimann.com/?p=2373&preview=true

    • Arne

      Habe die stelle glaube ich gefunden. Aber es ändert sich nichts wenn ich diesen Code hier nehme:

      function add_defaults_fn() {
          $tmp = get_option(‘text_expander_options’);
          if(($tmp['chkbox1']==’on’)||(!is_array($tmp))) {
              $arr = array(“expand_text” => “+”, “collapse_text” => “-”);
              update_option(‘text_expander_options’, $arr);
          }
      }

  • Kaffeekatz

    Hi, thanks for the elegant plugin. Works great for FAQs page. I’m running into two issues on another part of the site I’m doing, though: http://juliarosspt.com/tutoring In this case, I need to style the item inside the brackets (i.e. the “click to expand” text in your example), but that seems to throw the code off. The other is a very strange thing where the first in the set of items I’m expanding adds an extra space after itself. I’ve been through the html over and over, and can’t get rid of it, or tell why it’s there. Any ideas?

    • http://www.ali.dj Hedgehog

      How did you style it?

    • Wphacker

      I ran into that same thing (the first-item extra space) – it turns out that the plugin is wrapping the first item in tags, which then treats that first item as part of the preceding paragraph.

      I actually found numerous posts out there talking about “the first item bug”…

      My kludge of a workaround:  I wrapped the preceeding paragraph in a div inline styled with the same background, position:relative, z-index:9999 and then applied a negative bottom margin – in my case 80px. 

      THEN, I duplicated the first expand item on the list, so it’s both #1 and #2 .

      Worked fine.   Basically, I just floated that preceding paragraph to the top of the Z stack, made sure it had a background, and then sucked the first expand item out of place underneath it.

      As I said… ugly, but works.  Maybe that will help!

    • http://www.ali.dj Hedgehog

      Thanks for the solution. I’ll use that in the next version unless I can find a less hacky way.

  • http://www.facebook.com/Kevin4fm Michael Smith

    Fantastich! (Ich wollte sagen: “Brilliant”, aber ich kann dass nicht auf Deutsch sagen)

    I was using this plugin two minutes after downloading it.  It would have been one but I had to search out the [EXPAND .... ] [/EXPAND] syntax here :-)

    I’m using the latest versions of WP (3.2.1) and Mozilla Firefox (6.0.1). IE8 (8.0.6001) doesn’t seem to like the default arrows, but the functionality works fine. Seems to be working without problems with my other plugins too … at least so far.

    Easily the simplest plugin to use that I’ve tested out!

    I’m using it at http://www.misc-stuff.co.uk/?page_id=90 where it only took me about 10 minutes to condense 65 A4 pages of text.

    Now I’m off to try and break it.

    (-: Michael4fm :-)

    PS: I’ve just realised it’s taken me longer to leave this comment than it did to download & use the plugin for what I needed! :-)

    • http://www.ali.dj Hedgehog

      Haha, your German seems to be fine.

      There is also a button above the the editor to add an expand-box.

      It works and looks very good on your page.

      The font you used probably didn’t have these arrows but I see you found an alternative.

  • Mark

    Very nice plugin! 

    Ran across it looking for a way to expand a location map in a coupon.  Between your [short code] I can put images and text but not [short code] for MapPress Pro. It show the map but does not load. I have also asked the people at MapPress is there is a way to insert html.  Might this be a solution?

    I have 2 tests of you plugin: 1 instance for expanding the map only and under that 1 instance that reveals the entire coupon.

    http://www.saltaireliving.com/hbbiz/restaurants/

    For me it works in IE7 as well …

    Thanks Again!

    • http://www.ali.dj Hedgehog

      The test-page seems to be offline. Can you provide a new link to it so I can see it myself?

  • Eric Forman

    you need a comment [code] shortcode or a syntax highlighter!  :-)

    • http://www.ali.dj Hedgehog

      I rely on Disqus’ comment engine. I thought about switching to another one.
      You can also send me the code via the contact-page.
      Thanks for your effort.

  • Eric Forman

    hm i just left another comment with code in it, but it seems to either not display properly, or have disappeared entirely when trying to edit it.   the point was, it might be helpful to some to style the expand link as well.  

  • Eric Forman

    It would be cool to have a parameter to have a section expanded by default, instead of always hidden.

    • http://www.ali.dj Hedgehog

      That sounds like a good idea, Eric.
      I put that on the todo-list.

  • kool

    i love this plugin.. but it’s great if we can have more flexibility on customizing it.. also, looks like your plugin crash the expanding text plugin.. do you mind provide me with the solution for  this?.. as i want to use both plugin..

    • http://www.ali.dj Hedgehog

      Why would you want to use both?

      I could add an option to Text Expander which makes it possible to create text-sections without the slide-transition.

    • kool

      because the existing expanding text plugin serve the purpose that i wanted right now and i would like to use your’s in another page of my site.. so i prefer to use both..

  • Will

    I have the same problem with this page http://shalanah.com/jk/faq/ how can i remove the

    space between expandable texts. Please help thank you.

    • Will

      BTW Im a Novice at this so be gentle, if you know what i mean =p

    • http://www.ali.dj Hedgehog

      Hello Will,

      I think this is not possible currently (unless you remove the margin-bottom: 20 in the css-selector for the -element which I don’t recommend though).

      I will look into this next week and see what I can do.

    • will

      Thank you for your quick reply =p

    • Adrianna Nina

      I love this plug in but have the same issue.  I looked at the shalanah site and it looks like the problem is solved there.  How was this done??  Thanks!

    • http://www.ali.dj Hedgehog

      It isn’t fixed. The space is still there. I will need to find a way to remove the -tag which automatically surrounds the link.

      I will investigate this soon.

  • Q2Design

    Can’t wait till this is upgraded to work with WP 3.2
    Your work is highly appreciated!

    • http://www.ali.dj Hedgehog

      it does work for me in WP 3.2.1. I’d appreciate if you could get back to me with your problem via my contact-form.

  • http://www.facebook.com/khai.foo Khai Foo

    Great plugin, exactly what I was looking for.

    Can you tell me how to get rid of the space between the “Click to Expand” line and the expanded line?

    Thanks a lot

  • WP Fan

    Very nice plugin but also not working in IE 8.

    • http://www.ali.dj Hedgehog

      I’ll look into it soon.

  • Buderus199

    Not working in WP 3.2!

    • http://www.ali.dj Hedgehog

      I’ll look into this soon. Thanks for pointing it out.

    • http://www.ali.dj Hedgehog

      it does work for me in WP 3.2.1. 

      I’d appreciate if you could get back to me with your problem via my contact-form.

    • Buderus199

      Yea, I see now that is working if u don’t write space after the first [ and before “EXPAND”, like u writed down in above article. Tested on fresh 3.2.1. Wp install and fresh text expander plugin.

    • http://www.ali.dj Hedgehog

      That’s good to hear. If I remove the space it turns the EXPAND-syntax into an expand-box because I use the plugin on this blog myself. I haven’t found a way to circumvent that without adding code to the text-expander-plugin (which I don’t want).

  • matthew gormally

    I love this plugin.  Only problem I am having is it does not work in some IE 7.  Any news on when this may be fixed.? Otherwise perfect for me.

    • Anonymous

      Can’t say when I’ll have the time to look into it but I’ll definitely fix it.

    • http://twitter.com/thekieran thekieran

      Hi there hedgehog, I also love this plugin. Works perfectly with my IE8 and WP 3.2.1 however still not working with IE 7. Do you have any idea yet when you will have time to look into it?

  • Doug Anderson

    Hello. I’m using your plugin and I think it is very good. But I’ve found an annoying error that creates an extra tag between each instance (I’m using the Firebug tool to detect it). You see I have a list of persons and for each of these I have some information that should appear when I expand it. But it seems that it produced an extra paragraph between the individuals on the list and I want to get rid of that. Have looked at the .te_div css class and tried a bit forward. But unfortunately I don’t see any result. Any suggestions of what I should do?
    This is my site where the problem is: http://unitedblogarticles.com/statistics/united-players/.  Just take a look at the distance between the top two individuals…

    • Anonymous

      Hi Doug,

      That is really not very helpful for you.
      I’ll look into the problem and get back to you as soon as fixed this problem.

      Give me some time though as I’ve got a lot more stuff to do right now.

    • j w

      Is there a solution to this extra paragraph bug?

  • Josh

    First, great product! I really like this plugin. Do you know how to have it maintain a consistent expansion rate when expanding text? I notice that with larger texts, the expansion will be gradual at first and then quickly fully expand. It seems like there is a timer on it. How can I keep a consistent pace on the expansion?

    Many Thanks,

    Josh

  • Scott

    How do I control the margin when the text expands?

    http://bendetti.com.previewdns.com/company-profile/

    • Josh

      I ended up having to use columns to control the margins. Works great.

  • Rapidlc

    I get an error when I install the plugin:

    Fatal error
    : Cannot redeclare add_defaults_fn() (previously
    declared in
    /home/rapids5/public_html/wordpress/wp-content/plugins/quick-chat/quick-chat.php:317)
    in
    /home/rapids5/public_html/wordpress/wp-content/plugins/text-expander/text-expander.php

    55

  • http://www.onlygators.com SilverGator

    kidalex – Your reply to my comment below did not make sense to me. What is .entry and where would I find that? It would be a nice feature if possible.

    • Anonymous

      You need to modify the “function expand(param)” to add a collapse-link after .entry .
      I’m sorry but I really can’t go more into detail. I’m writing my Bachelor Thesis right now and have to deal with a ton of other things.

  • Didzis

    How soon this great plugin could be compatible with WordPress 3.1?

    Thanks in advance!

    • Anonymous

      My blog is running on WordPress 3.1 and as you can see it works.

      Which theme are you using?

  • Marten

    Thank you for the plugin! It is exactly what I was looking for a few weeks now and finally – here it was!

    By the way, is it possible to style the expand link somehow? If I put the expand link between heading tags, it all breaks. I took a look at your suggestion to use CSS3, but in this case the expand link would be the same on every page. However, I use your plugin on two different subpages – on one of them I would like to use H5 heading style for the expand link. Do you have any ideas?

    Thanks!
    M.

    • Marten

      Or is it somehow possible to give specific ID to the plugin on each page in order to style the different headings with CSS?

    • Anonymous

      This should be possible using CSS3 attribute-selectors which are compatible with nearly all browsers (besides IE6).

      a[id~="te"] should work.

  • http://www.onlygators.com SilverGator

    Wish the “expand” link would disappear once it was clicked and a “collapse” link would appear at the end of the post. That would make it perfect.

    I see an option in the plugin for a collapse option…but have no idea how to implement it. Can you please advise?

    Thanks!

    • Anonymous

      You’d have to insert the collapse link after .entry which stands for class=entry.
      If there are more users requesting such a feature I’ll include it but to me it sounds pretty specific.

  • Crazyhome

    After updating to WordPress 3.0.5, the plugin has become not fully efficient. Now the arrow is not displayed. In the previous version (3.0.2), all functions worked well. Is it possible to correct this situation?

    • Anonymous

      Do you still experience this issue in 3.1 ?

    • Crazyhome

      Yes, I do.

    • Anonymous

      Which theme are you using? I’m trying to reproduce this problem.

  • Slim

    Plugin doesn’t work in IE at all! Otherwise it is awesome. Are you going to fix it?

    • Anonymous

      Yeah, I will definitely as soon as I find the time for it.

    • http://pulse.yahoo.com/_DPUODZANJ47ZILMYG5LAD3QAYY Brian Mitchell

      Same problem for me. Any updates on how to fix with IE8? IE8 just shows it all expanded. Any suggestions?

  • Amanda Stretton

    Is there a way that I can style the question or am I only able to style the expanded answer?

    • Anonymous

      it is currently possible, but only via using CSS3-attribute-selectors.
      The one you’d have to use should be :

      a[id^="te"] {background: green;}

      In the next version I’ll add a class to the link so the styling is supported in all browsers.

  • Seaus

    One great feature would be to have a choice to show the expand option on a page with many posts but on single post page show the fully expanded post.

    • Anonymous

      This sounds pretty specific to me.
      If more users want this feature, I’ll consider adding it in a future version.

  • Mad

    Hi Alex,

    thank you for the update – it fixed the bug – but now there is a new problem – when I expand some text it hangs and is not opening the whole text.

    For now I’ll use version 0.1 again, because it runs smoother…

    • Mad

      p.s: It hangs just sometimes – not with a special text…

    • Anonymous

      On which browser does it hang?
      I couldn’t reproduce this behaviour.

  • Axelf78

    Plugin does not work at all in IE7

  • Curavon

    Hello –
    I’m afraid I’m also experiencing the exact same problem that Paula describes. Which is too bad because this plugin is a much-needed tool! I experienced the problem on FF 3.6, Safari 5 and IE8. My theme is The Clothes Shop via sarah-neuber.de.
    Thanks for any help you can provide!

    • Anonymous

      I’ll look into these problesm next week and fix it.
      Thanks for providing that kind of data.

  • paula

    Hi kidalex, thanks very much for the plugin, love the smooth sliding.

    I do however have the same problem as Mad; with multiple instances on one page the links change to the last instance on the page when clicked. So if I have expandables: apples, pears and oranges, after clicking on apples, the name of apples will change to oranges. So you end up with three times oranges after clicking them all.
    This happens in Chrome 8.0 and in FF 3.6.
    I am using WordPress 3.0.4 with Atahualpa 3.5.3
    And the plugin does not work at all in IE7.

  • Mad

    Hi – es gibt ein Problem wenn man mehrere Text Expander Buttons übereinander schreibt.
    Gibt es z.B. die Expander: Preise, Größen, Farbe – klicke ich nun auf Preise und schließe den Expander wieder, so heißt er plotzlich Farbe – das gleiche gilt auch für den Zweiten Button – das war in der vorletzten Version nicht der Fall – woran könnte das Liegen!? Danke für das Plugin!

    • Anonymous

      Das Problem ist mit Version 0.3 behoben.

  • guest

    Good idea but doesn’t work in IE7, FF 3 or Opera 9

    • Anonymous

      Thanks for the cue. After releasing v 0.2 soon, I’ll check what’s going wrong.

  • LHAJACK

    This is not working for me. It is only showing the text that is supposed to expand out. So if I were to put the example into my page it omits the “Click to expand!” and only displays “This is our beautiful text.”

    Any idea?

    • Anonymous

      1. Which theme are you using?
      2. Have you deleted the space-character between [ and Expand? It has to start with [Expand

  • Grace

    Hey cool plugin. I’m trying to use it multiple times on the same page. Is this functionality available? It isn’t working for me. Only the first one seems to work. Thanks!!

    • Grace

      Sorry disregard that! Thanks for such a kickass plugin. Fits my needs exactly!

  • http://pulse.yahoo.com/_R6CL2TLRXD5I2O6M6AGKSMEITM Shumba

    Hi,
    I just downloaded it, activated it, edited a page in the HTML mode. It did not work, I did this
    [ EXPAND CAN]
    Conditions – Actions – Needs
    [/ EXPAND]
    seen on my page, it seems that the plugin code is not called, do you have any suggestions?
    The page I setup to test this on http://tmpfire.com/?page_id=1689
    regards,

    • http://pulse.yahoo.com/_R6CL2TLRXD5I2O6M6AGKSMEITM Shumba

      Does anyone monitor this and add comments on how to use this correctly?

    • LHAJACK

      It looks like you’ve got an extra space or two in there.

      Try removing the space between the [ (bracket) and EXPAND in the opening tag.

      Also you may have an extra one between the / and EXPAND in the closing tag.

      See if that works for you then.

    • LHAJACK

      I’ve put my efforts trying to get this one to work properly on hold for my site. Instead, I’m trying the jquery collapse-o-matic plugin instead for now.

    • Anonymous

      I heard the plugin doesn’t work with some themes. Which one are you using?

  • Yuval

    Hi,
    Thanks for implementing this plugin, should be very usable.
    I just downloaded it, activated it, edited a page in the HTML mode, copy and pasted the example, and also tried it on on of my paragraphs. It did not work, I just had the
    [EXPAND click to enlarge!]
    This is the text
    [/ EXPAND]
    seen on my page, it seems that the plugin code is not called, do you have any suggestions?
    regards,

    • Anonymous

      Text Expander seems to not be working with all themes. Which one are you using? Could you also give me a link to a post you’re trying to use it in?

  • Ronaldo7es

    installed and tried it and love it.

  • Sophia

    I did some tests between two wordpress themes, it seems to not work on the default wordpress theme, I wonder why?

    • Anonymous

      Thanks for pointing that out.
      I’ll investigate this matter soon.

  • Robert

    I love this plugin, but I would like to be able to custom style the header text on which you click, and I don’t see how I can do that. There is an id number assigned to the element in which the text is located, but it changes every time the text reloads! Is there any way to custom style the clickable text?

    • Anonymous

      I’ll add an options-page soon where you can configure it.

  • SB

    Love the plugin! Having a hard time with listing many of them. The very first one seems to have a problem with spacing: http://shalanah.com/jk/faq/
    Any help would be appreciated!

    • Anonymous

      They all appear with the same spacing in my Chrome 7.

  • Patrick

    Doesn’t seem to work with IE7, the text is already expanded and you cannot collapse it, please help…

    Thanks.

    • Anonymous

      I’ll check that problem as soon as I find the time to.

  • Christian Voigt

    thanks for the plugin! I think it would be better not to insert arrow-symbols with javascript, since users like Norma may want to modify the graphical style of the link. here is a semantically cleaner version, that adds and removes the css classes “open” and “closed” to the link. you can then use background-images of arrows for a.open and a.closed.

    <?php
    /*
    Plugin Name: Text Expander
    Plugin URI: http://www.ali.dj/wordpress-plugin-text-expander/
    Description: Allows you to define areas of text that expand/collapse when clicked. It is built on Dagon Design's Expanding Text-Plugin, but comes with some improvements.
    Author: Alexander Zigelski
    Version: 0.1
    Author URI: http://www.ali.dj
    */

    function expander_str_replace_once($needle , $replace , $haystack){
    // Looks for the first occurence of $needle in $haystack
    // and replaces it with $replace.
    $pos = strpos($haystack, $needle);
    if ($pos === false) {
    // Nothing found
    return $haystack;
    }
    return substr_replace($haystack, $replace, $pos, strlen($needle));
    }

    function expander_process($content) {

    $offset = 0;
    $stag = '[EXPAND ';
    $etag = '[/EXPAND]';
    while (stripos($content, $stag, $offset)) {

    // string to replace
    $s = stripos($content, $stag, $offset);
    $e = stripos($content, $etag, $s) + strlen($etag);

    // inside data
    $ds = stripos($content, ']', $s) + 1;
    $de = $e – strlen($etag);

    // style tag
    $ss = $s + strlen($stag);
    $se = $ds – 1;

    $sstring = substr($content, $s, $e – $s);
    $sdesc = substr($content, $ss, $se – $ss);
    $sdata = substr($content, $ds, $de – $ds);

    mt_srand((double)microtime()*1000000);
    $rnum = mt_rand();

    $new_string = '’;
    $new_string .= $sdesc . ” . “n”;
    $new_string .= ”;
    $new_string .= ‘expander_hide(‘#te’ . $rnum . ”);’;

    $sdata = preg_replace(‘`^`sim’, ”, $sdata);

    $content = expander_str_replace_once($sstring, $new_string . $sdata . ”, $content);

    $offset = $s + 1;
    }

    return $content;

    }

    function expander_javascript() {
    wp_enqueue_script(‘jquery’);
    echo ‘

    ‘;
    }

    add_action(‘wp_head’, ‘expander_javascript’);
    add_filter(‘the_content’, ‘expander_process’);

    ?>

    • 1pxsolidblack

      ups, the relevant part does not appear in the above comment. here are the changes I made:
      function expand(param) {
      jQuery(function ($) {
      $(“div”+param).slideToggle(“slow”, function() {
      if( $(“div”+param).is(“:visible”) ) {
      $(“a”+param).removeClass(“open”).addClass(“closed”);
      }
      else {
      $(“a”+param).removeClass(“closed”).addClass(“open”);
      }
      });
      });
      }
      function expander_hide(param) {
      jQuery(function ($) {
      $(“div”+param).hide();
      $(“a”+param).removeClass(“closed”).addClass(“open”);
      $(“a”+param).show();
      });
      }

    • Anonymous

      Danke für deine Arbeit Christian.
      Ich fand’ es ganz gut kein Bild zu benutzen.
      Werde darüber nachdenken es optional mit deiner Variante auszustatten.

    • 197three

      I would really like to modify the ARROW icon, but can not understand your solution. Where to paste the above code and the one you added? Where do I control the icon that will be displayed to Expand or Collapse? Thanks, and Thanks for the great PLUGIN !!

  • Mynth

    The plugin dont work. I see the collapsed text in your blog without click in the link.
    I happen the same in my blog.
    What could be happen?

    • Lian00

      Same problem for me (pleaaase, put an example on the plugin page on WordPress.orp and in the readme.txt !)

  • http://www.normamaxwell.com Norma

    Love this plugin – I would like to get rid of the arrow – can yo tell me how to do that with css? thanks! ~Norma

    • Anonymous

      I’ll make it configurable soon.

  • Pingback: Text Expander für WordPress

  • Miriam Schönherrr

    Hi, kann Google denn diesen Text lesen? Ich könnte sowas für Hinweise auf meiner Webseite http://bestellenessen.de/ gebrauchen? aber aus SEO-Sicht muss der Text auf jedenfall für den Crawler zu finden sein. Keine Ahnung, ob die das standardmäßig beim Aufruf der Seite aktivieren, oder ob es verborgen bleibt.

    • Anonymous

      Schalte doch mal JavaScript aus, dann siehst du es.
      Die Textblöcke werden lediglich ausgeblendet von meinem Plugin.
      Das heißt, dass Sie standardmäßig immer sichtbar sind, auch für Suchmaschinen.