Blaine0002
06-23-2006, 10:00 PM
This makes it so whenever you use the [img] bbcode, instead of a real picture it will post a thumbnail instead. when you click that thumbnail it will bring you to the actual image.
open includes/class_bbcode.php
find:
return '<img src="' . $link . '" border="0" alt="" />';
replace with:
return '<a href="' . $link . '" target="_blank"><img border="0" width="250" alt="Thumbnail" src="' . $link . '" /></a>';
This will convert all images so they have a width of 250 and make them clickable to the original image. note: if you have a oblong image, the hight will stay preportionate so it may cause thumbnails to look strange, you can also specify a height but the thumbnails will not be preportionate. Change the width="250" to whatever you want :-)
Temp fix: (untill i get more time)
If you dont find that this is what you are looking for, try making a new bbcode with the following options
Title: thumbnail
Tag: imgt
Replacement: <a href="{param}" target="_blank"><img border="0" width="250" alt="Thumb resize." src="{param}" /></a>
example: [php]http://img96.imageshack.us/img96/7499/gibraltar12804sx.jpg[/php
then ad an image so people can use the imgt tag to make a thumbnail of only certain images.
open includes/class_bbcode.php
find:
return '<img src="' . $link . '" border="0" alt="" />';
replace with:
return '<a href="' . $link . '" target="_blank"><img border="0" width="250" alt="Thumbnail" src="' . $link . '" /></a>';
This will convert all images so they have a width of 250 and make them clickable to the original image. note: if you have a oblong image, the hight will stay preportionate so it may cause thumbnails to look strange, you can also specify a height but the thumbnails will not be preportionate. Change the width="250" to whatever you want :-)
Temp fix: (untill i get more time)
If you dont find that this is what you are looking for, try making a new bbcode with the following options
Title: thumbnail
Tag: imgt
Replacement: <a href="{param}" target="_blank"><img border="0" width="250" alt="Thumb resize." src="{param}" /></a>
example: [php]http://img96.imageshack.us/img96/7499/gibraltar12804sx.jpg[/php
then ad an image so people can use the imgt tag to make a thumbnail of only certain images.