TinyMCE Standard Emoticons don't show on frontend TinyMCE Standard Emoticons don't show on frontend codeigniter codeigniter

TinyMCE Standard Emoticons don't show on frontend


Try setting

relative_urls: false

in your tinyMCE.init() function:

tinyMCE.init({    [...]    relative_urls: false});

This basically tells TinyMCE to use absolute paths for images, emoticons, etc, rather than relative paths. I had a similar problem and doing this solved it.