MyBB Community Forums

Full Version: Smilies dont appear in posts...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Smilies appear in the clickable box, but just show up as a word in posts. How come? I checked the settings and "Clickable Smilies Inserter" is checked yes. Please help. Could the problem be that the smilies are located at another website? And I can't put them in the images directory because I'm hosted at Createmybb
Yes and also dont forget you have to enable smilies in your main forum settings.. I had the same problem
I did it the "Board Settings" And yes to what? I'm still having problems...
I don't think MyBB correctly supports external smilies. It won't be possible to fix this if you're using CreateMyBB, but if you're using your own host, you can probably fix this by finding this in inc/class_parser.php:
$this->smilies_cache[$smilie['find']] = "<img src=\"{$this->base_url}{$smilie['image']}\" style=\"vertical-align: middle;\" border=\"0\" alt=\"{$smilie['name']}\" title=\"{$smilie['name']}\" />";
Replace with:
$base = (strpos($smilie['image'], 'http://') === false) ? $this->base_url : '';
$this->smilies_cache[$smilie['find']] = "<img src=\"{$base}{$smilie['image']}\" style=\"vertical-align: middle;\" border=\"0\" alt=\"{$smilie['name']}\" title=\"{$smilie['name']}\" />";
But since I am, what do I do?
Turbohog Wrote:But since I am, what do I do?

Ask CreateMyBB support to apply the patch dennis gave
Turbohog Wrote:But since I am, what do I do?

There isn't much you can do at this point, since you don't have access to the MyBB files, besides begging the guys over at CreateMyBB Wink