FIrst: thanks for all the great work you're doing, Jan!!!
I'm speaking of Phoca Guestbook 3.0.2 for Joomla 3.x.
Tried to find "Emoticons" in toolbar of tinymce in frontend of the guestbook.
After doing some research, found how you initiate the tinymce edior. So the following solution worked for me.
In file components/com_phocaguestbook/models/fields/phocaeditor.php, around line 99 - 102, where you setup the environment for tinymce, one can set the keyword for emoticons there:
current code:
Code: Select all
//Plugins
plugins : "link image autolink lists ",
// Toolbar
toolbar1: "bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | bullist numlist | undo redo | link unlink anchor",
Code: Select all
//Plugins
plugins : "link image autolink lists emoticons",
// Toolbar
toolbar1: "bold italic underline strikethrough | alignleft aligncenter alignright alignjustify | bullist numlist | undo redo | link unlink anchor emoticons",
But of course, if you don't miss emoticons, nothing needs to be done.
Thanks again. Tought you might want to know, in case you haven't seen it already...
Lukas