I've also updated it to look better with the new default MyBB theme, as well as making it easier to expand/collapse the spoilers by clicking anywhere on the title row.
2014-09-20, 10:49 PM (This post was last modified: 2014-09-20, 10:50 PM by Sephiroth.)
(2014-09-13, 09:16 AM)ThePanda Wrote: Great, thank you very much for this plugin.
It works fine in Firefox but the +/- effect is not appearing in chrome. Possible bug? Please check attachment for screenshot.
It works fine for me in Chrome; check your image path settings. Due to the way this plugin is coded with the javascripts, I believe it only pulls the min/max images from the images/ directory; if your theme uses a custom directory, simply drop collapse.png and collapse_collapsed.png into /images and you'll be fine.
(2014-09-15, 12:26 AM)oji Wrote: Thank you, but it's better to use another regexp to support not only the English languge in descriptions. Something like this:
I will consider this for a future update, but seeing as I've only dealt with the English Language, I cannot guarantee proper support for non-english languages. If that regexp will work, I can include it in the next update. I'll likely see about custom theme support for this plugin, since I only run a single theme on my board.
(2014-09-13, 09:16 AM)ThePanda Wrote: Great, thank you very much for this plugin.
It works fine in Firefox but the +/- effect is not appearing in chrome. Possible bug? Please check attachment for screenshot.
It works fine for me in Chrome; check your image path settings. Due to the way this plugin is coded with the javascripts, I believe it only pulls the min/max images from the images/ directory; if your theme uses a custom directory, simply drop collapse.png and collapse_collapsed.png into /images and you'll be fine.
Yes I'm using a custom theme. But the issue was not with the images.
The thing is that, the forum is in a "/forum" subdirectory.
2014-09-26, 03:56 AM (This post was last modified: 2014-09-26, 03:56 AM by Eric.)
(2014-09-21, 06:11 AM)ThePanda Wrote:
(2014-09-20, 10:49 PM)Sephiroth Wrote:
(2014-09-13, 09:16 AM)ThePanda Wrote: Great, thank you very much for this plugin.
It works fine in Firefox but the +/- effect is not appearing in chrome. Possible bug? Please check attachment for screenshot.
It works fine for me in Chrome; check your image path settings. Due to the way this plugin is coded with the javascripts, I believe it only pulls the min/max images from the images/ directory; if your theme uses a custom directory, simply drop collapse.png and collapse_collapsed.png into /images and you'll be fine.
Yes I'm using a custom theme. But the issue was not with the images.
The thing is that, the forum is in a "/forum" subdirectory.
In the plugin, I found that the
src="/images/collapse.png
src="/images/collapse_collapsed.png
So I replaced it with
src="forum/images/collapse.png
src="forum/images/collapse_collapsed.png
and now everything works fine. Thanks.
Actually the plugin should probably be edited to this path:
2014-09-30, 06:59 PM (This post was last modified: 2014-09-30, 07:23 PM by Sephiroth.)
(2014-09-26, 03:56 AM)Eric J. Wrote:
(2014-09-21, 06:11 AM)ThePanda Wrote:
(2014-09-20, 10:49 PM)Sephiroth Wrote:
(2014-09-13, 09:16 AM)ThePanda Wrote: Great, thank you very much for this plugin.
It works fine in Firefox but the +/- effect is not appearing in chrome. Possible bug? Please check attachment for screenshot.
It works fine for me in Chrome; check your image path settings. Due to the way this plugin is coded with the javascripts, I believe it only pulls the min/max images from the images/ directory; if your theme uses a custom directory, simply drop collapse.png and collapse_collapsed.png into /images and you'll be fine.
Yes I'm using a custom theme. But the issue was not with the images.
The thing is that, the forum is in a "/forum" subdirectory.
In the plugin, I found that the
src="/images/collapse.png
src="/images/collapse_collapsed.png
So I replaced it with
src="forum/images/collapse.png
src="forum/images/collapse_collapsed.png
and now everything works fine. Thanks.
Actually the plugin should probably be edited to this path:
src="images/collapse.png"
Right, will fix that in the plugin itself. I run my board in the root directory, so I never caught that. Thanks.
e: Submitted new build to plugins site, labeled as Beta. If I get enough feedback from others with it, I'll bump it up to stable. Should contain fixes for non-english support in descriptions and non-root-directory forums. Still looking into getting theme image directory for the search/replace function inside of it so it can support boards with multiple themes.