I have Alex King's WP Grins implemented on my blog. The smilies show up and work on my comments page, but I can't get them to show up in my admin interface.
I've followed Alex's instructions and added the call (<?php wp_grins(); ?>) into my wp-admin/quicktags.php file, but they're not showing up when I go to create a post.
You need to edit wp-admin/admin-functions.php
Find "edToolbar" :
<script type="text/javascript">edToolbar();</script>
';
echo '</div>';
then insert these lines before the echo:
if (function_exists("wp_grins")) { echo "
"; wp_grins(); }
Works for me, anyway :)
That works. Thanks Lbessant!
carmige
Member
Posted 4 years ago #
I can't seem to get the smilies working in my WP 1.5 admin interface using the above suggestion. Are there any other suggestions out there anyone could offer?