Quote:
Originally Posted by rwoelich
Also, it appears that by default all the smilies show when you first load the smilie popup. The reason I was looking for this mod was so the smilies could be displayed by category and the popup wouldn't take forever to load because we have nearly 1000 smilies installed. If you want to set one single category to show when the smilie popup is first loaded (then the user can use the dropdown to pick another category), you can edit the plugin that was installed...
Find this bit of code in the plugin from your Plugin Manager:
PHP Code:
if (!$_REQUEST['select_category'])
{
$select_category = $new_categories[0];
}
...and replace it with:
PHP Code:
if (!$_REQUEST['select_category'])
{
$select_category = 'categoryname';
}
...where categoryname is the name of the category you want to load by default.

|
Beautiful! This was my only problem with the hack. Thanks so much!