MyBB Community Forums

Full Version: Thumbshot MyCode. Embed thumbnail of any site into posts.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Title:
Thumbshot

Short Description:
Thumbshot image preview in posts.


Regular Expression:
\[thumbshot\](.*?)\[/thumbshot\]

Replacement:
<img src="http://open.thumbshots.org/image.aspx?url=$1" border="1" />

Example:
[thumbshot]http://community.mybb.com[/thumbshot]
nice! would be awesome if you could make it link to the url also!

(2012-01-01, 11:22 PM)minidriver Wrote: [ -> ]nice! would be awesome if you could make it link to the url also!

Its quite easy to do. Big Grin

In the Replacement, instead of what i gave, use....

Quote:<a href="$1"><img src="http://open.thumbshots.org/image.aspx?url=$1" border="1" /></a>
can you make it to open it in new tab
just add the target

Quote:<a href="$1" target="_blank"><img src="http://open.thumbshots.org/image.aspx?url=$1" border="1" /></a>