
07-11-2008, 03:41 AM
|
 |
|
|
Join Date: Jan 2005
Location: Egypt
Posts: 536
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Hund
Is it possible to integrate the favorite smilies mod with this mod?
|
Yes, it's possible.
You can do the same installation steps of the "Favorite Smilies" on our product's code (Hook: editor_toolbar_end), we have done it for you & every one need it. Attached!
Quote:
Originally Posted by PoetJA-1975
Wow! Wonderful product!
Thanx for sharing 
Voted in MOTM!
Quick question - can we randomize the smilie order.
I've tried editing the includes/functions_editor.php file to include ORDER by rand() - doesn't seem to work for your product though.
Thanx,
Jacquii.
|
You are welcome.
It's ordered by:
Code:
ORDER BY imagecategory.displayorder, imagecategory.title, smilie.displayorder
By default, but you can edit the product's code (Hook: editor_toolbar_end) to do what you need, search for the following code:
PHP Code:
ORDER BY imagecategory.displayorder, imagecategory.title, smilie.displayorder
& Replace it with the following code:
PHP Code:
ORDER BY RAND()
* Not tested, but should work for our product *
|