amykhar's HideawayA premium support forum for my vbulletin modifications. Members of this forum receive extra help, bug fixes, etc. for my code. To join, Subscribe to the Vbulletin Plan
Minor feature requests will be considered, but major mod alterations will require a special contract.
This one is a beta mod that will help divide up the more smilies page.
Unfortuately, it's a code mod because the query has to change.
It's a pretty easy one to install though. Hope you like it.
This is mod may NOT be released on any other vbulletin-related site. If you would like to download it, register here and then send a PM to me asking to join my hideaway group.
Amy
__________________ Salt makes mistakes taste great.
I thought to modify it little , I would want to directly put the selection before opening the additional window.
I hope that it does not give you annoyance.
// First, I need a list of smilie categories to fill the dropdown box.
$smiliecats = $db->query_read("SELECT imagecategory.title as category, imagecategory.imagecategoryid FROM ".TABLE_PREFIX."imagecategory where imagetype=3 ORDER BY title");
to this
Code:
// First, I need a list of smilie categories to fill the dropdown box.
$smiliecats = $db->query_read("SELECT imagecategory.title as category, imagecategory.imagecategoryid FROM ".TABLE_PREFIX."imagecategory AS imagecategory where imagetype=3 ORDER BY title");
A lot of people who will be using this will have a lot of smilies. Just wondering, wouldn't it make more sense to first open up to a page of category links, and then the user can just open the one that they need? That way you wouldn't have to load every single smilie each time that its used.
I tried to install this and everytime the smile popup window opens it keeps loading the full list of smilies. When you select a category it just basically refreshes the whole smilie list and stays at the top. Any idea's to help fix this?
A lot of people who will be using this will have a lot of smilies. Just wondering, wouldn't it make more sense to first open up to a page of category links, and then the user can just open the one that they need? That way you wouldn't have to load every single smilie each time that its used.
Not necessarily. Most people use the same few smilies over and over again. The way this is set up, it will pull up the default category first. Then, users can change categories as needed. If the smilies are orgainized right, it will save most users a click.
Amy
__________________ Salt makes mistakes taste great.
Not necessarily. Most people use the same few smilies over and over again. The way this is set up, it will pull up the default category first. Then, users can change categories as needed. If the smilies are orgainized right, it will save most users a click.
Amy
Here on this Site, default smilie categories shows up by default.
On my test board where I installes the Hack, no categories ist picked by default.I always have to chose one category first.
Is there any chance to change this?
Yes. Change the number for the default id that I have. Here, the default category is 19. Check to see what yours is and change the 19 to the new number.
__________________ Salt makes mistakes taste great.