Quote:
Originally posted by Mas*Mind
One question though: Why don't you use the vbulletin standard template mechanism in order to integrate it fully into it and make it easier to let it be included in a next version?
|
Most of the hack is handled through the standard template system. The only thing that isn't done with templates is the text for the onmouseover prompt box. All the text for this is included in the vbcode.js file, in order to speed-up page load times, as the vbcode.js file is cached by the browser. It's easy to find the text to replace in the vbcode.js file though, if you want to change it.
Quote:
Originally posted by Mas*Mind
Looks very good! One thing though; The standard javascript-prompts are ugly as hell, it would be very nice if a next version contains self designed popups where you can fill in some parameters...
|
The only thing that uses a javascript alert() prompt in version 1.2 is the [help] link. If you are referring to the actual text prompt boxes, I won't be altering these, as loading a new page for each prompt is (IMO) too slow and unneccesary for a simple text input.
Quote:
Originally posted by epic
How to specify the max number of smilies to display on the posting page? in another word how to set value of $maxSmilies ?
|
This is explained in the documentation. Simply add two arguments to the call to getclickysmilies() on each page.
For a table with 3 columns and 10 smilies, use this:
PHP Code:
$vbcode_smilies = getclickysmilies(3,10);
|