Installed
Quote:
Originally Posted by Jpax
I get this errror The following dependencies were not met:
This product is not compatible with version 3.7.0 of vBulletin. (Compatible starting with 3.6.8 / Incompatible with 3.7.0 and greater)
|
In the product-dynamicpic.xml find:
Code:
<dependency dependencytype="vbulletin" minversion="3.6.8" maxversion="3.7.0" />
and replace this with:
Code:
<dependency dependencytype="vbulletin" minversion="3.7.0" maxversion="3.7.99" />
Quote:
Originally Posted by ski diva
Attempting to install this, I've run into what's probably a simple problem. When I attempt to edit the file vbulletin_global.js, its entire content shows up in my text editor as one long line. I can "soft wrap" the text, but the line endings remain arbitrary.
This is preventing me from finding and replacing the necessary lines.
I'm on a Mac, using Komodo Edit and/or TextWrangler.
Thanks for any help.
|
Quote:
Originally Posted by Lizard King
In compessed js search for
Code:
{this[C]=this[C+1]}this.length--;return A}}
Just add after
Code:
function resize_image(obj, link, maxwidth){if (obj.width > maxwidth){obj.style.cursor = 'pointer';obj.style.width = maxwidth + 'px';obj.style.height = parseInt(obj.height * maxwidth / obj.width) + 'px';obj.onclick = function(){window.location.href = link;return false;};}}
and you'are good to go
|