Resource icon

XenFacil Spoiler Tag 4

No permission to download
This dont work for me, something with "Callback Method" Error Message. And i have uploaded all Files.
Today I can not watch this. Tomorrow afternoon I will. Sorry.
There are two folders /js/ and library. Review the files are uploaded to the right path.

Put a screenshot of the error, please.

Salud2
 
Any possibility to get a button added so it's easier to use for the users who are new or just not good with bbcode?
 
Any possibility to get a button added so it's easier to use for the users who are new or just not good with bbcode?
Unfortunately, no. Depends on the editor and manager does not put BBcode button images. At least I have not found another way to place buttons than manually.

Salud2
 
It's a nice add on but the spoiler tag is in Spanish (or whatever)
and I do not understand Spanish! There is no option to change it either :/
If you post one spoiler, it creates 3.
I noticed that with all your addons....
Their all in Spanish! Please make them English!
 
It's a nice add on but the spoiler tag is in Spanish (or whatever)
and I do not understand Spanish! There is no option to change it either :/
If you post one spoiler, it creates 3.
I noticed that with all your addons....
Their all in Spanish! Please make them English!

Instead of making demands, possibly you could ask? They were nice enough to release this addon (regardless of who uses it or not), the least you could do is be respectful and ASK.

Maybe you should just translate it yourself (although I have a feeling it is user-error, all the addons I have installed from this dev were in English).

Some people...
 
Yeah... I have that 3 spoiler issue also with the Custom BB Code Manager.
I really didn't wanna be disrespectful but in spanish - it's useless for me.

Besides: I DID ASK. I asked if he can make his plugins in English - I asked him, not you.
 
I didn't blast anyone's work.
I appreciate his addons.

edit: Solved the 3 spoiler problem, apparently that only happens if I put spoilers in posts that existed before I installed the addon.
edit2: damn 3 spoiler problem again for all posts -.-
edit3: now it seems to work xD
 
It's a nice add on but the spoiler tag is in Spanish (or whatever)
and I do not understand Spanish! There is no option to change it either :/
If you post one spoiler, it creates 3.
I noticed that with all your addons....
Their all in Spanish! Please make them English!
The add has only one phrase. ACP -> Appareance -> Search in phrases ->
Select your language​
Content Title: put lms_toggle_spoilerM​
search​
Translate it: Show/Hide​
Enjoy​

Salud2
 
Thanks, work like a charm :)

Just a note, there is a link to the images.xenfacil.net in css file.

background: @primaryLighter url('http://images.xenfacil.net/default/xenforo/gradients/form-button-white-25px.png') repeat-x top;
Oops. I'll fix soon.
To fix it, change for:
background: @primaryLighter url('@imagePath/xenforo/gradients/form-button-white-25px.png') repeat-x top;

Salud2
 
Oops. I'll fix soon.
To fix it, change for:
background: @primaryLighter url('@imagePath/xenforo/gradients/form-button-white-25px.png') repeat-x top;

Salud2

No worries, thanks :)


Just a few suggestions:

Formatter.php

$name = '<div>' . new XenForo_Phrase('toggle_spoilerO') . ($spoiler ? ': '.$spoiler : '') . '</div>';
return '<blockquote>' . $name . $content . '</blockquote>';

Replace with:

PHP:
            $name = new XenForo_Phrase('toggle_spoilerO') . ($spoiler ? $spoiler : '');
            return $name . $content;


Template: lms_Spoiler

Hardcoded style :(

Also:


<div class="lmsAttribution lmsType">
<div style="float: left;">
<a href="#" class="lmsSpoilerCambio"> <div class="lmsButton">{xen:phrase lms_toggle_spoilerM}</div></a>
</div>
<b>: </b><span style="font-size: 11px;"><xen:if is="{$spoiler}">{$spoiler}</xen:if></span>
</div>


a better option?


Code:
<div class="lmsAttribution lmsType">
            <div style="float: left;">
                <a href="#" class="lmsSpoilerCambio"> <div class="lmsButton">{xen:phrase lms_toggle_spoilerM}</div></a>
            </div>
            <span style="font-size: 11px;">
                <xen:if is="{$spoiler}"> &nbsp; : {$spoiler}
                    <xen:else/>&nbsp;
                </xen:if>
 
        </span>
        </div>


Thanks again :)
 
Ah! Add-on is in english and supports translation (phrased). Switch between show/hide and maintains the label text.

Salud2
 
Top Bottom