PrettyPhoto on [img] tags
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
PrettyPhoto on [img] tags
Hi stoker,
I was wondering if it would be possible to integrate your mod to work on tags in topics.
Thanks
I was wondering if it would be possible to integrate your mod to work on tags in topics.
Thanks
Re: PrettyPhoto on [img] tags
The only wau I can think of.
Open includes/bbcode.php
Find:
Replace with:
Open includes/bbcode.php
Find:
Code: Select all
'img' => '<img src="$1" alt="' . $user->lang['IMAGE'] . '" />',
Code: Select all
'img' => '<a href="$1" rel="prettyPhoto"><img src="$1" alt="' . $user->lang['IMAGE'] . '" style="max-width:200px; max-height:100px;" />',
Re: PrettyPhoto on [img] tags
I agree it would be nice to see it on images. I asked for it to be added to the ReImg Image Resizer but the author wasn't too keen on it
I'll have to try it your way Stoker

I'll have to try it your way Stoker

Re: PrettyPhoto on [img] tags
the code above works. the only things is that if you have text between two images it will automatically wrap them as a images and make the text linked to the images posted.
Re: PrettyPhoto on [img] tags
hmm OK thenneuropass wrote:the code above works. the only things is that if you have text between two images it will automatically wrap them as a images and make the text linked to the images posted.

Re: PrettyPhoto on [img] tags
my fix
test
http://www.ciricadoforum.it/forum/viewt ... 59&t=17715
Code: Select all
'img' => '<a href="$1" rel="prettyPhoto"><img src="$1" alt="' . $user->lang['IMAGE'] . '" style="max-width:400px; max-height:200px;" /></a>',
http://www.ciricadoforum.it/forum/viewt ... 59&t=17715
Re: PrettyPhoto on [img] tags
I have correctneuropass wrote:hum I don't see any prettyPhoto mod working on the link you posted...

Re: PrettyPhoto on [img] tags
I have tried to do that on Lightbox. But it made problems with the normal images... For example signature images etcStoker wrote:The only wau I can think of.
Open includes/bbcode.php
Find:Replace with:Code: Select all
'img' => '<img src="$1" alt="' . $user->lang['IMAGE'] . '" />',
Code: Select all
'img' => '<a href="$1" rel="prettyPhoto"><img src="$1" alt="' . $user->lang['IMAGE'] . '" style="max-width:200px; max-height:100px;" />',

Re: PrettyPhoto on [img] tags
that is because it replaces the img tag, ANYWHERE you use it on your forum!