Smiley button on the New Topic/Reply page?
3 posters
Page 1 of 1
Smiley button on the New Topic/Reply page?
I want to add the smileys button on the New topic text editor. I don't want the smiley box outside the editor.
http://boredom.iftopic.com/forum
http://boredom.iftopic.com/forum
Re: Smiley button on the New Topic/Reply page?
omarpop23 wrote:hey,
look here dear,
https://help.forumotion.com/t144004-add-twitter-emoji-to-the-editor
I want to add my website smileys, not those of Twitter, but thanks!
Re: Smiley button on the New Topic/Reply page?
Hi @Wealh,
It's possible to do this by making a small modification to the editor. Go to Admin Panel > Modules > JavaScript codes management and create a new script with the following settings.
Placement : In all the pages
That should remove the box and add the button to the editor.
It's possible to do this by making a small modification to the editor. Go to Admin Panel > Modules > JavaScript codes management and create a new script with the following settings.
Placement : In all the pages
- Code:
(function() {
document.write('<style type="text/css">div.posting-block{width:99%}</style>');
$(function() {
if (!document.getElementById('quick_reply') && $.sceditor && !/emoticon/.test(toolbar)) {
var smile = document.getElementById('smiley-box');
toolbar = toolbar.replace(/date/, 'emoticon,date');
if (smile) smile.style.display = 'none';
}
});
}());
That should remove the box and add the button to the editor.
Similar topics
» Quick Reply for Guests is missing smiley button
» How To Remove Smiley Menu from 'Post A Topic/Reply' screen
» Latest Topic Widget always redirects to the very last page of a topic
» Guests cannot view quote button or reply to posts in a topic
» Reply without page change problem
» How To Remove Smiley Menu from 'Post A Topic/Reply' screen
» Latest Topic Widget always redirects to the very last page of a topic
» Guests cannot view quote button or reply to posts in a topic
» Reply without page change problem
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum