View Full Version : Forum Display Enhancements - Auto Resize large images in an IMG tag
mr.gamesbay
08-31-2006, 10:00 PM
First, sorry about my bad english :rolleyes:
With this small hack, all large images in an IMG Tag will be resized after the site has loaded. With a click on the resized imge, it will open in an new window with the original size. Works in Firefox, Opera, IE and i think in all other browser.
Here is a Demo: Link (http://www.gamesbay.de/showthread.php?t=128)
Work with vB 3.6.0 - 3.6.4
INSTALLATION:
--------------------------------
- Copy the file resizevbimg.js in the dir clientscript.
--------------------------------
Open the file includes/class_bbcode.php
Search the line(~line 1887 ):
return '<img src="' . $link . '" border="0" alt="" />';
and replace with:
return '<img src="' . $link . '" border="0" alt="" id="vBCodeIMG" />';
Save and upload.
--------------------------------
Styles & Templates > Search the SHOWTHREAD Template
Seach:
<body onload="$onload">
Replace with:
<body onload="$onload;vbImageResize()">
Save the template.
--------------------------------
Styles & Templates > Search the NEWREPLY Template
Search:
<body$onload>
Replace with:
<body onload="$onload;vbImageResize()">
Save the template.
--------------------------------
- Styles & Templates > Style Manager > Common Templates > headinclude
Search:
<!-- / CSS Stylesheet -->
After, add:
<script type="text/javascript" src="clientscript/resizevbimg.js"></script>
Save the template.
--------------------------------
Styles & Templates > Style Manager > Main CSS > Additional CSS Definitions
After, add:
.vbimgcodelimit {
cursor: pointer;
border: dotted 1px black;
}
Save.
--------------------------------
Done :)
Terminatoronly
09-01-2006, 12:40 PM
wow good hack :) installed ;)
Kaezul
09-01-2006, 12:51 PM
Nice job. I've seen this done before, but never on [IMG] tags. Fantastic work.
principino1984
09-01-2006, 01:24 PM
I just installed this hack, but...how does it work? I tried to upload a new pic, but it doens't resize it..
Marco
thedvs
09-01-2006, 01:59 PM
that is one of the best mini hacks released for ages, many many thanks dude.
works in ie/firefox
FleaBag
09-01-2006, 02:38 PM
I just came here to look for something like this after a member posted gigantic pictures! Thanks. :)
mr.gamesbay
09-01-2006, 03:16 PM
I just installed this hack, but...how does it work? I tried to upload a new pic, but it doens't resize it..
Marco
All large images in an IMG Tag will be resized like in the demo URL in my first post :)
spetactical
09-01-2006, 04:27 PM
Great work!
alkatraz
09-01-2006, 04:54 PM
All large images in an IMG Tag will be resized like in the demo URL in my first post :)
are the images physicaly resized or do they just display at a smaller size?
edit: looks like it loads the full image then resizes it on the fly
GREAT HACK! THANKS
update: installed and works perfectly!
Get Shorty
09-01-2006, 05:26 PM
Nice job. I've seen this done before, but never on [IMG] tags. Fantastic work.
This hack does the same thing...
https://vborg.vbsupport.ru/showthread.php?t=118048
Quarterbore
09-01-2006, 07:08 PM
Mine is not resizing either... This should work for all usergroups, right?
It may be my work lapptop as I have to use an older Java because of some specific apps I need... I'll see later if it works on other machines?
MentaL
09-01-2006, 07:17 PM
great u sexy piece of ass.
Alex_
09-01-2006, 07:31 PM
What happens with
[ url=blar ][ img ][ /img ][ /url ]
constructs? Which link will not work?
// Edit - hmhm url tags are converted within code boxes?!
Snake
09-01-2006, 11:01 PM
Do you have some kind of a screenshot or something?
First time i replay to someone.
Grate hack! Grate idea!
Thanks.
Quarterbore
09-01-2006, 11:38 PM
Well, I just double checked my install and tested on Win XP SP1, Win XP SP and Windows 2000 and she don't work on my site... I am going to take it back off and try the other one :surprised:
Thanks for sharing as I need this bad but it doesn't like my setup I guess...
What kind of effect does this have on server load?
maximux1
09-02-2006, 06:38 PM
Fantastic job on this -
We run an image heavy site with predefined dimensions and this method solves a huge layout problem for us.
R+
mIRCnet
09-03-2006, 10:50 AM
Works like a charm on new posts with images, what about the old posts? do I have to reuild the threads cache?
Update: no need to do any thing as its based on JavaScript and will work automaticly, for the past posts it will show the orginal size then resize when the page done loading.
twitch
09-03-2006, 05:24 PM
very nice, thanks
SparKeh
09-03-2006, 07:00 PM
great hack, thanks
Settler
09-03-2006, 07:37 PM
hi, sorry for mine english.
but this hack don't work on my forum 3.6.0
can you say me, where the problem is?
thank you,
mfg Settler
SparKeh
09-03-2006, 07:53 PM
hi, sorry for mine english.
but this hack don't work on my forum 3.6.0
can you say me, where the problem is?
thank you,
mfg Settler
If you follow the instructions step by step as listed it should work no problem. Did you place the javascript file in the clientscript folder?
dtdesign
09-04-2006, 09:46 AM
Can this be used in Journal Pages to do the same ?
mIRCnet
09-04-2006, 12:16 PM
Can this be used in Journal Pages to do the same ?
Which Journal program do you use? I think if you are using vBadvanced CMPS it will work as its using the Forum BB Codes and settings.
ehsanix
09-04-2006, 04:43 PM
thank u for this hack
janslu
09-07-2006, 07:15 PM
mr.gamesbay,
you've made a terrific job. I am importing a large forum from smf to VB and I got tons of extremely large files that ruin my fluid xhtml page. Your hack saves me :)
There's just one thing that I think should be changed. It is illegal to declare more than one object with the same id on the same page. I think you should've used class for declaration:
1. for includes/class_bbcode.php:
return '<img src="' . $link . '" border="0" alt="" class="vBCodeIMG" />';
2. and one change in line #11 of resizevbimg.js:
if (docImg[i].width > vbimgcodeWidthMax && docImg[i].className == 'vBCodeIMG') {
What do you think?
g0rdy
09-09-2006, 11:05 PM
Works with vBadvanced too:
mod the adv_portal template
find
<body>
replace
<body onload="$onload;vbImageResize()">
such an important mod never understood why it is never included on any bb software
Aeolian
09-10-2006, 05:46 PM
if only this was a plugin :(
bolly.beats
09-11-2006, 09:09 PM
Lol, didnt worked for me bro, but nice effort.
troux
09-12-2006, 08:06 PM
INSTALLED. Works perfect.
yup, nice mods !! juz installed
premsuthan
09-14-2006, 10:04 AM
working great, thx a lot
Codeman05
09-16-2006, 03:41 AM
works great, thanks!
teedizz
09-16-2006, 06:19 AM
will this work with 3.6.1
teedizz
09-18-2006, 02:29 AM
will this work with 3.6.1
same question, different day....lol
hi..
it is resizing the image (decrease size) , not adding scroll bar ??
remasnet
09-18-2006, 05:48 PM
great great great , installed and work perfect thanks man
iran.gs
09-20-2006, 12:59 PM
Installed, all i can say is wow
Nathan2006
09-20-2006, 04:55 PM
Thank you mr.gamesbay,
Working great and just what I needed :)
Install
newbe_haselina
09-21-2006, 03:26 AM
It worked fine in 3.6 but as it seems it doesn't work in 3.6.1 ... any ideas what I have to do? Me and my team love this hack ... *smile*
Thanks for helping :-)
This mod works perfectly with vb 3.6.1
However, i'll think the javascript need a modification, to open the new window in the same size as the image. Any one who can fix that?
dtdesign
09-21-2006, 04:18 PM
Which Journal program do you use? I think if you are using vBadvanced CMPS it will work as its using the Forum BB Codes and settings.
I'm using vBadvanced CMPS v2.2.0 for my front page and I'm using this (https://vborg.vbsupport.ru/showthread.php?t=96462) as my journal hack.
dtdesign
09-21-2006, 05:20 PM
And I figured out why it wasn't working - I was editing the wrong style...
I've sent myself to the stupid corner for an hour..
daiver
09-22-2006, 12:27 AM
Thanks. Works like a charm!
lol :) have any one found a way to make it sizing the new windoe fit the image?
teedizz
09-22-2006, 09:48 PM
Thanks, I installed this but i found 1 slight probelm.
This is also auto resizing members sigs who use the [IMG] tag. Is thier anyway to bypass sigs & just make it work for thread content only?
try to move the secund template modification
Styles & Templates > Style Manager > Common Templates > headinclude
to
[CODE]Styles & Templates > Style Manager > edit Templates > postbit(_legacy)]
and tell us what happent
teedizz
09-23-2006, 04:41 PM
Thanks, I installed this but i found 1 slight probelm.
This is also auto resizing members sigs who use the [IMG] tag. Is thier anyway to bypass sigs & just make it work for thread content only?
can someone help me with this please. Thanks.
Noonster
09-23-2006, 06:05 PM
Does this work with Safari Browser on the mac??
iran.gs
09-23-2006, 07:36 PM
i install this few days ago now dont code me but l think this slowed my site extremly this morning i installed a new style and my site speed has change to normal i could be wrong plz someone with more exper plz check if l am right or not.. thanks
teedizz
09-24-2006, 06:37 AM
Thanks, I installed this but i found 1 slight probelm.
This is also auto resizing members sigs who use the [IMG] tag. Is thier anyway to bypass sigs & just make it work for thread content only?
bump
i install this few days ago now dont code me but l think this slowed my site extremly this morning i installed a new style and my site speed has change to normal i could be wrong plz someone with more exper plz check if l am right or not.. thanks
UPS:
ofcourse it slows your site :) you are transfering significent more traffik on this way
I was thinking on another hack :(
mr.gamesbay
09-24-2006, 06:53 AM
ofcourse it slows your site :) you are transfering significent more traffik on this way
But not more as a normal img tag, it's a js script. So no server side scripting.
teedizz
09-24-2006, 03:34 PM
But not more as a normal img tag, it's a js script. So no server side scripting.
why couldnt you quickly answer my question while you were here? ..haha
mr.gamesbay
09-24-2006, 03:52 PM
why couldnt you quickly answer my question while you were here? ..haha
Haha !?
Really, i don't know why i don't answer your question. Perhaps i had no time ......
Don't forget, this is a FREE Hack without any Support from me. I don't have much time, because i have a hard and time intensive job. If i will have in the near future more time, i will support my small hacks.
zompus
09-25-2006, 01:02 PM
Great hack, i've installed it here (http://www.psdspy.com/forums/image-showoff/200-rate-image-above-you.html).
principino1984
09-27-2006, 10:30 PM
It wont work on my forum, the images stays at the dimension they are..nothin is resized... :cross-eyed:
Marco
transitbus
09-28-2006, 03:58 AM
This would be great if it resized the pop up to the image and had an onclick close option
GoNz00
09-28-2006, 12:30 PM
finally got round to installing this, top hack :) many thanks.
transitbus
10-02-2006, 04:30 PM
I am uninstalling this mod/hack baecause of your refusal to support it and it's incomplete state. It need some basic functinality (auto window resizing and click to close) before it is ready.
If you are not going to support your own mod why post it?
mr.gamesbay
10-02-2006, 07:32 PM
I am uninstalling this mod/hack baecause of your refusal to support it and it's incomplete state. It need some basic functinality (auto window resizing and click to close) before it is ready.
If you are not going to support your own mod why post it?
This mod is complete. If u need extra functions, u still have to wait if someone will realese it oneday for free.
Realy, i dont know how someone will need for this mini hack Support.
transitbus
10-02-2006, 07:49 PM
no, this is a not an addon but a hack to make images resize. If it was complete you would have support for options instead of hard coding it into a php file or the js file. You have no options for closing the window once open and you have nothing for auto resizing the window once open.
refer to this mod for a finished product:
https://vborg.vbsupport.ru/showthread.php?t=118048
mr.gamesbay
10-02-2006, 08:02 PM
refer to this mod for a finished product:
https://vborg.vbsupport.ru/showthread.php?t=118048
I know this mod too, its a fine one.
But if someone dont need many options (like me) and more sql database queries those one is the wrong.
Feel free and use what u like.
iran.gs
10-16-2006, 10:33 PM
humm ever since i upgraded to 3.62 this hack wont work on my new 3.62 skins or any other skins older or newer it only works on the one i coded before upgrade is there any chance i am doing something wrong or this does not work on 3.62 ???? :(
keyness
10-18-2006, 07:29 PM
It's working on my 3.6.2. This one is a lovely hack, thank you very much.
FeNeRisT
10-20-2006, 06:03 PM
Danke
johnnyusa
10-20-2006, 08:11 PM
Works like a dream on vb 3.6.2, thanks mate. INSTALLED
haytham
10-20-2006, 10:13 PM
The only mod that worked for me..great thanks..INSTALLED
HAVOK USA
10-21-2006, 04:50 AM
I have followed the instructions perfectly - two times now and it does not work.
Im using vb 3.62
can anyone help?
do you have other scrips installed that might conflict with this one?
Not working for me either on 3.6.1
I have no other mods that would affect it. I run a pretty vanilla site.
Any suggestions?
ashley53680
11-18-2006, 02:03 PM
Anyone have this working on 3.6.3? I've tried a few times and I keep getting an error on the class_bbcode.php file. :(
MorrisMcD
11-19-2006, 03:47 AM
Well freakin done!
Thank you
itsatonline
11-21-2006, 03:44 AM
worked in 3.6.3 ??
Maksa
11-25-2006, 01:17 PM
will it work with 3.6.4?
Jagiello
11-25-2006, 01:50 PM
Excellent! This should be part of the official Distribution. Thanks!
Works fine for me with 3.4.6.
J.
Nathan2006
11-28-2006, 12:40 AM
EDIT: Sorted it :)
mr.gamesbay
11-30-2006, 03:13 PM
update!
I have tested this Hack with a 3.6.4 Board and this Hack work without any problems :)
ninjamaster
12-01-2006, 09:29 PM
thanks :)
Greggg
12-11-2006, 09:30 AM
Good job !!!
Thanks !!!
Goat Boy
12-11-2006, 11:08 AM
update!
I have tested this Hack with a 3.6.4 Board and this Hack work without any problems :)
Loaded it on 3.6.4 about a week ago and it work flawlessly.
Great Job !
Jarllax
12-13-2006, 08:51 AM
Thanks much, works great!
iran.gs
12-13-2006, 03:10 PM
I installed it but it wont resize :( i used urs before it worked but on my other skins but not on this skin.
maybe i put this in a wrong spot
.vbimgcodelimit {
cursor: pointer;
border: dotted 1px black;
}
where should i add this before or after all the codes ?
this is all the codes plz take a look
/* ***** styling for 'big' usernames on postbit etc. ***** */
.bigusername { font-size: 14pt; }
/* ***** small padding on 'thead' elements ***** */
td.thead, div.thead { padding: 4px; }
/* ***** basic styles for multi-page nav elements */
.pagenav a { text-decoration: none; }
.pagenav td { padding: 2px 4px 2px 4px; }
/* ***** define margin and font-size for elements inside panels ***** */
.fieldset { margin-bottom: 6px; }
.fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 11px; }
/* ***** don't change the following ***** */
form { display: inline; }
label { cursor: default; }
.normal { font-weight: normal; }
.inlineimg { vertical-align: middle; }
.vbimgcodelimit {
cursor: pointer;
border: dotted 1px black;
}
Goat Boy
12-13-2006, 03:19 PM
Did you insert the line
<script type="text/javascript" src="clientscript/resizevbimg.js"></script>
in all the headinclude templates for each style?
iran.gs
12-13-2006, 03:23 PM
yes i did that also
<meta http-equiv="Content-Type" content="text/html; charset=$stylevar[charset]" />
<meta name="generator" content="vBulletin $vboptions[templateversion]" />
<if condition="$show['threadinfo']">
<meta name="keywords" content="$threadinfo[title], $vboptions[keywords]" />
<meta name="description" content="<if condition="$pagenumber>1"><phrase 1="$pagenumber">$vbphrase[page_x]</phrase>-</if>$threadinfo[title] $foruminfo[title_clean]" />
<else />
<if condition="$show['foruminfo']">
<meta name="keywords" content="$foruminfo[title_clean], $vboptions[keywords]" />
<meta name="description" content="<if condition="$pagenumber>1"><phrase 1="$pagenumber">$vbphrase[page_x]</phrase>-</if>$foruminfo[description_clean]" />
<else />
<meta name="keywords" content="$vboptions[keywords]" />
<meta name="description" content="$vboptions[description]" />
</if>
</if>
<!-- CSS Stylesheet -->
$style[css]
<if condition="is_browser('opera') AND !is_browser('opera', '8.0.1')">
<style type="text/css">
ul, ol { padding-left:20px; }
</style>
</if>
<!-- / CSS Stylesheet -->
<script type="text/javascript" src="clientscript/resizevbimg.js"></script>
<script type="text/javascript">
<!--
var SESSIONURL = "$session[sessionurl_js]";
var IMGDIR_MISC = "$stylevar[imgdir_misc]";
var vb_disable_ajax = parseInt("$vboptions[disable_ajax]", 10);
// -->
</script>
<script type="text/javascript" src="clientscript/vbulletin_global.js?v=$vboptions[simpleversion]"></script>
<if condition="$show['popups']"><script type="text/javascript" src="clientscript/vbulletin_menu.js?v=$vboptions[simpleversion]"></script></if>
<if condition="$vboptions['externalrss']">
<link rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] RSS Feed" href="external.php?type=RSS2" />
<if condition="$show['foruminfo'] OR $show['threadinfo']">
<link rel="alternate" type="application/rss+xml" title="$vboptions[bbtitle] - $foruminfo[title_clean] - RSS Feed" href="external.php?type=RSS2&forumids=$foruminfo[forumid]" />
</if>
</if>
One thing I noticed is that when you edit a post with this the image isn't resized when you're finished.
Great hack though...In a gaming site this would be a great addition!
KURTZ
01-08-2007, 01:52 AM
actually i use the IMAGE RESIZER (https://vborg.vbsupport.ru/showthread.php?t=118048) without any trouble :)
anyway thx for sharing ;)
kenfuzed
01-16-2007, 03:44 PM
Works great on my 3.6.4 board, THANKS!
redspider
01-17-2007, 03:01 AM
thank you I love it .
giotmuadong
02-07-2007, 01:22 AM
work well, thanks :)
thanks for this perfect hack
work like a champ
you rock
6piston
02-08-2007, 11:06 AM
hi GREAT MOD
is there a way of changing the size of the rezised images?
say from the current size (what size does it resize to anwyay? 500px wide?)
to say 200px wide or 300px wide?
Thanks!!!!
Tom
donaldgkimball
02-08-2007, 02:38 PM
hi GREAT MOD
is there a way of changing the size of the rezised images?
say from the current size (what size does it resize to anwyay? 500px wide?)
to say 200px wide or 300px wide?
Thanks!!!!
Tom
Yes, Just go ahead and edit the part of the .js file to whatever size you need it.
This is a great feature. Thanks
harlita
03-18-2007, 07:33 AM
the last step wasn't necessary for it to work on my 3.6.5 board.
excellent hack. thanks!
dragonlove
03-29-2007, 11:28 AM
Hmm, I don't know what happened with my forum . I checked the installation many times, but it still didn't work, does it require something?
(I'm running it on my PC using php5.2.1 and mysql5.0.33 (apache2) and vbulletin 3.6.5)
thank you for your support
Ekshi
03-29-2007, 03:19 PM
Thank you man nice mod.
alfaowner
04-15-2007, 10:27 PM
Didnt work for me either on 3.6.4, no errors, just didnt resize my images???
cunder
04-25-2007, 12:08 PM
Hello
Thank you man nice mod
But I use these mod vS-Hide.Hack.Resurrection.Expanded_2.8.1_by.Psionic.V ision
When someone presses on my site on the thanked button the pics reresize my images!
is there a way of changing wen someone press the thanks button en te pics don't stay resize !!!
thanks
BadgerDog
04-27-2007, 04:06 PM
Can I edit the PHP file with just notepad, or do I need something specific for these file types?
Thank you...
Regards,
Badger
Edit: NM, I downloaded a freeware PHP editor just in case, which seemed to work fine... :)
BadgerDog
04-27-2007, 04:52 PM
Works with vBadvanced too:
mod the adv_portal template
find
<body>
replace
<body onload="$onload;vbImageResize()">
such an important mod never understood why it is never included on any bb software
I have VBadvanced installed, but I didn't need to do this to make it work in v3.6.4? I just followed the author's instructions and it works fine, except of course, after displaying an edited post. The original large pic shows up there until you "submit" the edit and refresh the screen.
Should I be modding the "adv_portal template" as well, even though it seems to be working?
Nice mod and something like this should be included in original version.
Thanks
Regards,
Badger
wengi
04-30-2007, 12:07 PM
Installed and working gr8 on 3.6.5
Regards
Wengi
kildjean
05-04-2007, 12:54 AM
I have a suggestion, which I think it would be great...
You know when you click on the image that it pops up in a different window? You should make an addon to the script so it uses the Lightbox.js script to pop that image instead than a different window.
I'd love to see this implemented because it would make this script yet much cooler...
What do you think?
Kil
PS. I have this installed in 3.6.5 and it works just fine.
Lemac
05-10-2007, 03:16 PM
Very Good!
ashraf_gawdat
05-11-2007, 12:54 PM
mr.gamesbay,
you've made a terrific job. I am importing a large forum from smf to VB and I got tons of extremely large files that ruin my fluid xhtml page. Your hack saves me :)
There's just one thing that I think should be changed. It is illegal to declare more than one object with the same id on the same page. I think you should've used class for declaration:
1. for includes/class_bbcode.php:
return '<img src="' . $link . '" border="0" alt="" class="vBCodeIMG" />';
2. and one change in line #11 of resizevbimg.js:
if (docImg.width > vbimgcodeWidthMax && docImg[I].className == 'vBCodeIMG') {
What do you think?
I agree with this as it is not standard to have multiple id's in the same document. To install this hack with standards taken into consideration you may make the changes janslu mentioned above, but you must another 2 changes:
1. In line #13 of resizevbimg.js find
docImg[I].className = vbimgcodeClassName;
and remove it completely. Or you can just comment it by adding // (double slash) before the mentioned line.
2. In Styles & Templates > Style Manager > Main CSS > [I]Additional CSS Definitions
instead of adding
.vbimgcodelimit {
cursor: pointer;
border: dotted 1px black;
}
add
.vBCodeIMG {
cursor: pointer;
border: dotted 1px black;
}
And that's it.
Any way it is a good hack and I installed it.
ashraf_gawdat
05-11-2007, 02:04 PM
To make modifications in less templates, Additional CSS Definitions template may not be modified at all. Instead, the same effect can be made using javascript.
In file resizevbimg.js:
find
docImg[i].onclick = vbImagecodeWinOpen;
After it add:
docImg[i].style.cursor = 'pointer';
docImg[i].style.cursor = 'hand';
docImg[i].style.border = 'dotted 1px black';
The same effect of editing the CSS in Additional CSS Definitions template will be done.
Using 2 cursor values (pointer & hand) instead of (pointer) only to be cross browser, as (pointer) value is valid only for NS6/ IE6.
In a version 3.6.7 the line modified in a file class_bbcode.php is: ~ line1937
Works on 3.6.7
Not work with Safari.
Thank you very much for your nice hack!
Click Installed now.
StuartDH
05-31-2007, 05:09 PM
Can't seem to get it to work on 3.6.7PL1
I've got vbseo and vbadvanced installed, done everything in the insallation, added the body code for vbadvanced and tried the latest changes but nothing seems to get resized.
source code on the pages looks OK, but images are still large - http://www.wildaboutbritain.co.uk/forums/british-birds/11942-what-red-belly.html
BBI-Ross
06-02-2007, 03:36 PM
Works fine here with 3.6.7PL1.
Cheers.
WarDoGG
06-06-2007, 06:58 PM
thanks.. great mod ! works like a charm..
Zighinno
06-18-2007, 03:00 PM
Thanks ;)
radarhunter
06-20-2007, 06:41 AM
hey can u make this work with the Vbadvanced also ???
i mean to resize images on those is this possible ??????
eobie
06-20-2007, 04:46 PM
installed and working like a charm
redslush
06-22-2007, 09:00 PM
I would interest to know how to get this working for images displayed through a vbadvanced module.
Thanks
redslush
06-22-2007, 09:03 PM
NM my previous request. I found it. works like a charm
CrAEckY
06-24-2007, 01:41 AM
Well done! Great work! ;)
NoDRaC
07-02-2007, 03:02 PM
good hack thanks
redslush
09-05-2007, 01:15 PM
has anyone gotten this to work with 3.6.8? I had it working previously but now it no longer works after the upgrade.
edgecutioner
10-03-2007, 03:58 PM
wow it's working on 3.6.8 except for the Additional CSS defintions... but it works fine! thanks!
rapidphim
10-14-2007, 03:26 AM
can anyone tell if there is any modification for this mod to have thick/ darken background when click on the resize image to see full size?
LlanMan
10-23-2007, 08:43 AM
Great hack, just what I was looking for only a hell of a lot better, muchos kudos.
TouranMan
10-28-2007, 09:16 PM
wow it's working on 3.6.8 except for the Additional CSS defintions... but it works fine! thanks!
I have it working on 3.6.8 also and the CSS definitions work!
harlita
12-20-2007, 07:06 AM
3.6.8 and CSS defs work as well.
Marking as installed. great hack. I used to have a different one running on a 3.6.5 board, but no longer functioned after a couple updates. This one works swell.
Thanks ... installed in 3.6.8
kronnos
01-30-2008, 03:14 PM
Seems very nice.. is there a way to resize to different sized for different user groups?
BatMNet
02-02-2008, 10:18 AM
Great work.. To let you know I have it working on vBul 3.7 Beta4 ;)
Also worked out how to get it running on Blog :D
FENIX
02-05-2008, 04:16 PM
Also got it working on 3.7 beta 4.
Cheers :)
mr.gamesbay
02-07-2008, 02:04 PM
Thanks for the infos. :)
Have it working on vB 3.7 Beta4, too.
cash7c3
02-08-2008, 04:33 AM
thanks for the mod
kronnos
03-19-2008, 08:17 AM
Is the demo link still working or is it just me?
FleaBag
03-20-2008, 11:18 PM
The demo link doesn't work for me either friend.
jambo_1969
03-24-2008, 03:53 PM
Awesome - thanks for this - all works inc Additional CSS on 3.6.8
steve1966
03-25-2008, 02:53 PM
thanks
Cibberblackjam
03-29-2008, 04:22 AM
nice job, thanks!!!
fulviods
04-17-2008, 11:51 AM
thanks, work well on a 3.7RC1 ;)
This mod was working fine till we upgraded to 3.6.10. :(
srikanthbr
05-01-2008, 09:49 AM
Parse error: syntax error, unexpected '<' in /home/desisha2/public_html/freakz/forum/includes/class_bbcode.php on line 1945
plz help
PHILIPS-08
05-25-2008, 07:09 AM
Thanx for the mod let me install it
Acido
07-03-2008, 08:34 AM
working on 3.7.2 and it Also work on blog entries.
Just modific the template named "BLOG"
search for:
<body $onload>and replace with:
<body onload="$onload;vbImageResize()">It's done.
Mazinger
07-16-2008, 07:02 PM
The thread pages are not valid XHTML due to id="vBCodeIMG" which repeats in each image, and should be used one (unique). Any solutions to fix this?
ehsanix
07-21-2008, 08:06 PM
i m still using this hack for resizing images among all related hacks (3.7.2)
thanks 2 dear author
kronnos
02-13-2009, 03:04 PM
Any updates for 3.8.1?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.