Quote:
Originally Posted by Pseudomizer
Sorry, please ask the author of this hack. I do not know this.
Cheers,
|
No problem.
For now I've solved my problem. First I did the changes here....
https://vborg.vbsupport.ru/showpost....&postcount=147
So that the full paths are picked up. Then I changed "commbull.php" by replacing:
PHP Code:
$sql = "SELECT * FROM ". TABLE_PREFIX."style WHERE userselect > 0 LIMIT 1";
... with
PHP Code:
$sql = "SELECT * FROM ". TABLE_PREFIX."style WHERE userselect > 0 ORDER BY 'displayorder' LIMIT 1";
so that the style selected is the one with the lowest display order.
This solves my problem becase my default is set to be lowest so that it shows up first in the drop-down box.
Thanks,
Kevin