MyBB Community Forums

Full Version: where to put this???
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
hello, I upload this plugin to my site. but failed to upload the images. so plugin is ok, but not showing the sticky image. which root I should use for the images?? I uploaded the images in /public_html/images/english

http://mods.mybb.com/download/my-threads-decorator
sticky.png should go in ./images/ folder . Not in ./images/english/ folder Smile
I have my own Sticky image.and it is a Gif format image.
should I change it to PNG????
You can still use your .gif image, just you've to do is to Change .png to .gif in the plugin file.
Open the plugin file, do a search for .png and replace it with .gif

Then you can use your image in a gif format.
in the plugin file???? cant understand Sad
(2011-05-23, 07:35 PM)Aohor Wrote: [ -> ]in the plugin file???? cant understand Sad

Open ./inc/plugins/threads_decorator.php and find;
		$stimg = "<img src=\"images/sticky.png\" align=\"right\">";
and Change it into;
		$stimg = "<img src=\"images/sticky.gif\" align=\"right\">";
found this now
(2011-05-23, 07:38 PM)Aohor Wrote: [ -> ]found this now

Welldone. Now just upload image in ./images/ folder. I hope it should work Wink
There are other instances of png images though, so if you have your solved or closed images in gif format too, you'll need to edit those. Smile
Pages: 1 2