2013-04-15, 10:03 PM
2013-04-16, 02:13 AM
Admin CP -> Configuration -> Settings -> Search For " Clickable Smilies and BB Code " -> Change "Number of Smilies to Show" -> Change "Number of Smilie Cols to Show"
2013-04-16, 02:38 AM
No he means the size of the popup window when you click 'get more'
Go to jscripts/editor.js
find
and change the numbers to a different value:
Go to jscripts/editor.js
find
openGetMoreSmilies: function(editor)
{
MyBB.popupWindow('misc.php?action=smilies&popup=true&editor='+editor, 'sminsert', 240, 280);
},
and change the numbers to a different value:
openGetMoreSmilies: function(editor)
{
MyBB.popupWindow('misc.php?action=smilies&popup=true&editor='+editor, 'sminsert', new_width, new_height);
},
2013-04-16, 07:54 AM
(2013-04-16, 02:13 AM)Spiked Wrote: [ -> ]Admin CP -> Configuration -> Settings -> Search For " Clickable Smilies and BB Code " -> Change "Number of Smilies to Show" -> Change "Number of Smilie Cols to Show"Thats not what I was looking for exactly, but that is helpful information that I used! Thanks! I guess I overlooked that setting.
(2013-04-16, 02:38 AM)Wildcard Wrote: [ -> ]No he means the size of the popup window when you click 'get more'
Go to jscripts/editor.js
find
openGetMoreSmilies: function(editor) { MyBB.popupWindow('misc.php?action=smilies&popup=true&editor='+editor, 'sminsert', 240, 280); },
and change the numbers to a different value:
openGetMoreSmilies: function(editor) { MyBB.popupWindow('misc.php?action=smilies&popup=true&editor='+editor, 'sminsert', new_width, new_height); },
Perfect thanks!