• 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.

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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 🙂

    Thread Starter daisyhead

    (@daisyhead)

    That works. Thanks Lbessant!

    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?

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘WP Grins and WP 1.5 compatibility?’ is closed to new replies.