Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Spoiler Plugin - Support
#1
Hello,
I wrote a small plugin which adds the ability to use BBTag like spoiler tags on GetSimple Pages.
Spoiler means that the Text inside the [spoiler]-Tags will not be visible to the visitors, until they click the "Spoiler" Button (or hover the text if JS is disabled).
It is very useful if you have content that some visitors may not want to see.


Usage:
Simplest usage would be without any additional arguments:
Code:
[spoiler]This is my spoiler text[/spoiler]
It will create a button with the caption: Show Spoiler, when it's clicked, it shows the spoiler text. (And button caption will change to Hide Spoiler)
A bit more complex usage would be if you set a special button caption:
Code:
[spoiler=Click to show/hide a super secret text]This is my spoiler text[/spoiler]
This would create a button with the caption Click to show/hide a super secret text, when you click it will show the spoiler text. (The button caption will not change)
The more advanced way if the following, where you set show caption and hide caption:
Code:
[spoiler=Click to show a super secret text|||Click to hide a super secret text]This is my spoiler text[/spoiler]
Which will create a button with the caption Click to show a super secret text. When the user clicks on it, it will show the spoiler text and the button caption will change to Click to hide a super secret text. (Note that the delimiter for the two captions is |||, so you can't use it if you want a single caption spoiler button.

Changelog:
Version 1.1
  • Background-Color is now set to transparent when javascript is enabled.
  • Background-Color and Text-Color are now both set to #333, so that the text isn't readable until it is hovered (when JS is disabled)
Version 1.2
  • Now you can use [spoiler=Custom Text]My hidden Text[/spoiler] to give the spoiler button a custom caption
  • Will not add javascript and css code if no spoiler is used on the page
  • Improved onload function to not conflict with other plugins Thanks to singulae from the forum!
Version 1.3
  • Fixes a bug with line breaks in spoilers
Version 1.4
  • Rewrote Javascript Code (thanks to frnkkpp, he did most of the work), cleaned up PHP code
  • Added ability to specify different text for show/hide
  • Changed default button text to Show Spoiler and Hide Spoiler
  • HTML produced by the spoiler plugin should now be valid
Version 1.5
  • Added Settings:
    • Set default show/hide text
    • Decide if button/link should appear after or before the spoiler
    • Switch between Link and Button
Version 1.6
  • Improved JavaScript to work with IE6 and higher Versions and with latest Firefox 8 (more)
Version 1.7
  • Fixed another Firefox issue, where the Button/Link text won't change properly
Version 1.8
  • Added support for custom classes for button and div
  • Switched to domready to load faster
Version 1.9
  • Fixed some strict php errors
  • Fixed a bug with custom classes, everything should work fine now
Plugin Link – Download
Reply
#2
Please explain what for this plugin is, I never met "spoiler" in webdesign ;=)
|--

Das deutschsprachige GetSimple-(Unter-)Forum:   http://get-simple.info/forums/forumdisplay.php?fid=18
Reply
#3
Connie Wrote:Please explain what for this plugin is, I never met "spoiler" in webdesign ;=)
Quote:Spoiler is slang for any element of any summary or description of any piece of fiction that reveals any plot element which will give away the outcome of a dramatic episode within the work of fiction, or the conclusion of the entire work.
from Wikipedia

I can't explain spoiler very good, my English is horrible.
Reply
#4
I did a google search and found that SPOILER in BBCode is an element which hides text which only becomes visible when you mark the text

is that what you are intending?

Cheers, Connie
|--

Das deutschsprachige GetSimple-(Unter-)Forum:   http://get-simple.info/forums/forumdisplay.php?fid=18
Reply
#5
I've encountered this at sites like geocaching.com (for text which might prematurely reveal hints to a hidden location) which comes in quite handy there. They encrypt text with ROT13 there (mangle up the characters), but it's the same principle.

I personally don't have any immediate use for it, but it may come in handy for others, so: way to go epirat!
Reply
#6
Connie Wrote:I did a google search and found that SPOILER in BBCode is an element which hides text which only becomes visible when you mark the text

is that what you are intending?

Cheers, Connie
No, it puts a button that's calls 'spoiler' and when you click it, it shows the content.

You can also hide it again clicking the spoiler button.

Demo: http://krisu.viuhka.fi/getsimple3/index....ler-plugin
Author of GetSimple 3's Finnish Language file — http://get-simple.info/extend/language/f...guage/106/
Reply
#7
cool! This will be useful on a large site of mine, thanks!
Reply
#8
Hello,

this plugin is nice and works very well

But I have questions:
-how to change the button title
-Is it possible to put many buttons "spoiler" in a page with different names?
Reply
#9
I like it. Has great potential..

It would be much better if the button's appearance could change with CSS..

Some recommendations:
To avoid conflicts with other plugins that using window.load:
Code:
// unobtrusive way for call window.onload
  function addEvent(obj, evType, fn){
    if (obj.addEventListener){
      obj.addEventListener(evType, fn, false);
      return true;
    } else if (obj.attachEvent){
      var r = obj.attachEvent("on"+evType, fn);
      return r;
    } else {
      return false;
    }
  }
  
  addEvent(window, 'load', yourFunctionLaunchOnWindowLoad);

For check if exists the tag [spoiler] and avoid loading code that do not is used in other pages:
Code:
function check()
{
    global $data_index;    
    if (strpos($data_index->content, '[spoiler]') === false)
    {
        return false;
    }    
    add_action('theme-header','code');
}
Reply
#10
jlm Wrote:-how to change the button title
I've updated the plugin, now you can use the following code to set custom button title:
Code:
[spoiler=My custom title]Here is the hidden spoiler text[/spoiler]
jlm Wrote:-Is it possible to put many buttons "spoiler" in a page with different names?
Simply put more than one [spoiler] on the site:

Code:
[spoiler=My custom title]Here is the hidden spoiler text[/spoiler]
[spoiler=Another custom title]Here is the hidden spoiler text[/spoiler]

Please Update to the new Version 1.3, it fixes a bug when you have multiple line spoilers
Reply
#11
Thank you for your excellent work!
I am doing tests on this site http://gs.comlu.com/ and it works very well. (spoiler_plugin v 1.2)
I tried to create tabs (http://www.qualitycodes.com/samples/php/tabs/?id=2 example) but I'm too bad in php to make a plugin that works with GS
Reply
#12
jlm Wrote:Thank you for your excellent work!
I am doing tests on this site http://gs.comlu.com/ and it works very well. (spoiler_plugin v 1.2)
Thanks, but you should update to version 1.3 because it fixes a bug where the plugin won't work if you have multiple lines spoiler and custom text...

BTW: I looked to the example and i dont know how this could be used productive with getsimple... maybe if you give me some ideas i will think about making a plugin for it...
Reply
#13
singulae Wrote:I like it. Has great potential..

It would be much better if the button's appearance could change with CSS..

Some recommendations:
To avoid conflicts with other plugins that using window.load
Thanks a lot, I'm using your code now...
singulae Wrote:For check if exists the tag [spoiler] and avoid loading code that do not is used in other pages
Yeah, thanks i never thought about this Smile Now I used a different code which worked too.
Big thanks for your help!
Reply
#14
Hello,
sorry for my English very bad!
I think with this plugin do that sort of thing
http://www.trafalgardesign.com/faqs/module-faqs
or
http://www.acusti.ca/mooaccordion-css-sh...orial.html
on getsimple .
I can not make a plugin, because my php level is very small.
But the plugin is not far from doing this. You may need to modify the css to not look like the submit button
but I think the best is here http://ninjaforge.com/demo/ninja-accordion
My tests here http://gs.comlu.com/
Reply
#15
jlm Wrote:But the plugin is not far from doing this. You may need to modify the css to not look like the submit button
Ah... This plugin was nerver designed to do stuff like this, it's only a simple spoiler button, sure you can give it another style, just play a bit with the css...

What do you (users) think? Should I modify the button to look like the examples from jlm?
Personally I would create a new plugin for this, because this isn't a Tab plugin or a menu plugin, but a spoiler box...
Reply
#16
ePirat Wrote:What do you (users) think? Should I modify the button to look like the examples from jlm?
Personally I would create a new plugin for this, because this isn't a Tab plugin or a menu plugin, but a spoiler box...
I'd say that jim's suggestions exceed the original scope of your plugin. A more general plugin which hides/reveals content would be cleaner in my book. Just my 2c.

Also, mikeh has started work on a FAQ plugin this week.
Reply
#17
Is there a possibility for the Spoiler button to show "READ MORE" when the text is hidden and "READ LESS" when the text is expanded. This would make it so much more flexible than just saying SPOILER all the time.
Reply
#18
andyash Wrote:Is there a possibility for the Spoiler button to show "READ MORE" when the text is hidden and "READ LESS" when the text is expanded. This would make it so much more flexible than just saying SPOILER all the time.

Sorry for my late reply. I will try to make it possible, stay tuned Wink
EDIT: Done, update to 1.4 and see the first post how to use it. If you need further help, feel free to post your questions here.
Reply
#19
I can't see any button text.
Reply
#20
andyash Wrote:I can't see any button text.
Please give me a detailed description:
What spoiler tag you used? (Paste full [spoiler=xyz]...[/spoiler] that you used here.
What browser are you using?
Reply
#21
ePirat Wrote:
andyash Wrote:I can't see any button text.
Please give me a detailed description:
What spoiler tag you used? (Paste full [spoiler=xyz]...[/spoiler] that you used here.
What browser are you using?
ePirat Wrote:
andyash Wrote:I can't see any button text.
Please give me a detailed description:
What spoiler tag you used? (Paste full [spoiler=xyz]...[/spoiler] that you used here.
What browser are you using?

Got it. I was doing it wrong. One question - Is there a possibility of the button to shift at the end of the hidden text when the hidden text is made visible? Currently it stays where it is.
Reply
#22
andyash Wrote:Is there a possibility of the button to shift at the end of the hidden text when the hidden text is made visible? Currently it stays where it is.
On my feature list now, thanks for the idea. I'll make an option's page where you can set some of these things. Stay tuned for next version.
Currently I am a bit bussy but I hope that I can do it until the weekend.
Reply
#23
ePirat Wrote:
andyash Wrote:Is there a possibility of the button to shift at the end of the hidden text when the hidden text is made visible? Currently it stays where it is.
On my feature list now, thanks for the idea. I'll make an option's page where you can set some of these things. Stay tuned for next version.
Currently I am a bit bussy but I hope that I can do it until the weekend.

Thanks.
Reply
#24
andyash Wrote:Is there a possibility of the button to shift at the end of the hidden text when the hidden text is made visible? Currently it stays where it is.
Update 1.5 is out, has a settings page where you can set all this stuff. If you have any problems let me know.
Reply
#25
The new version rocks. Nothing more on the wishlist. Smile
Reply




Users browsing this thread: 1 Guest(s)