Forums

Join
bbPress Support ForumsRequests and FeedbackEmoticons For bbPress?

Info

Emoticons For bbPress?

  1. At least I'm not the only one with problems. :)

    I have the plugin activated, and if you type the shortcut, the image does appear. But you can't click on the image links to make them appear in your post.

  2. UPDATE!!

    Figured out a way to integrate WordPress smileys into bbPress. Use this plugin!

    http://pastebin.com/f411dfe2a

  3. This looks great! Thank you.

    Now if we can get WP-Grins converted to bbPress, we'd have clickable smilies...

    http://wordpress.org/extend/plugins/wp-grins/

  4. The insert function in Comment Quicktags for bbPress can easily be reused to insert smilies. You don't want to use wp-grins because it has to load prototype.js which is huge and slow.

  5. I wasn't having any luck using Comment Quicktags for bbPress with v0.9.0.1. I'll give it another shot tonight though.

  6. Still no luck getting Comment Quicktags for bbPress to work in the latest bbPress install.

  7. @citizenkeit:

    I haven't the same luck either. But _ck_ gave my at tip to put both files of Quicktags directly into /my-plugins/ and not into subfolder - now it works!

  8. Thanks for the tip. Didn't work for me. :(

  9. Is this actualy working by now or is there no way emotions could be impelmented in to bbpress? Thats a big shame I gues ...

    :(

  10. i didnt want ti install wordpress just for the smilies...

  11. You can just download WordPress and upload the smilies to a new directory. Then just change the plugin to point to the new directory at this line:

    #
    $wp_smiliesreplace[] = " <img src='/wp-includes/images/smilies/$img' alt='$smiley_masked' class='wp-smiley' /> ";
    #
    }
  12. _ck_:
    The insert function in Comment Quicktags for bbPress can easily be reused to insert smilies.

    Can you please show us how? Thanks :-)

  13. Maybe we should chip in some money for _ck_ to make a really nice emoticon plugin. Some of my forum users would probably chip in as well.

  14. hello,

    where i can download the latest version of this plugin? :)

    bye

  15. I've made an alpha version of bbPress Smilies available:
    http://bbpress.org/plugins/topic/bb-smilies
    It's rough but will get the job done.

  16. I want to make a suggestion _ck_ (then I don't have to make it).

    Put the (basic) smilies in a folder in the image folder, but also let people allow to put a smilie folder in de template's folder.

    Now let the plugin first check in the template folder if there is a smiley folder there, if so, use these smilies. If not, use the basic smilies from the basic map. This way we can use (custome)smilies suitable for the theme. (so if you theme is green, you can make some green smilies that fit your template.

    Get the idea?

  17. The plugin currently allows you to change the smilie "set".
    I intend future versions to be able to use multiple sets at the same time.

    If you want to make your own sets, just look at how the default folder is done and build your own. There is a single PHP file to edit.

  18. as _ck_ suggested, I move my issue here:

    Just upgrade bbpress to 1.0 version, after active the bbpress smilies plugin I found an issue for previous post-form.php (previously I am using v0.8 and that plugin works.

    The issue is at post-form.php, in my custom template directory.

    <label for="post_content"><?php _e('Post:'); ?>
    <?php do_action('bb_grins'); ?>
    <textarea name="post_content" cols="50" rows="8" id="post_content" tabindex="3">
    <?php bb_quote_message(); ?>
    </textarea>
    </label>

    Clearly <?php do_action('bb_grins'); ?> does not work anymore, because at the top of post form user can not see the smilies as before.

    any idea? thanks.

  19. See this part of the plugin, you need to change the bb_add_filter and bb_add_actionto justadd_filterandadd_action`

    /******************************************************************************
    * - Define for bbPress interface
    *****************************************************************************/
    
    $bbemoticons = & new bbEmoticons();
    
    bb_add_filter('post_text', array(&$bbemoticons, 'convert_smilies'));
    //bb_head is not called always. :-)
    //bb_add_action('bb_head', array(&$bbemoticons, 'bb_grins_head'));
    bb_add_action('bb_feed_head', array(&$bbemoticons, 'bb_grins_head'));
    bb_add_action('bb_grins', array(&$bbemoticons, 'bb_grins'));
  20. See this part of the plugin, you need to change the bb_add_filter and bb_add_actionto justadd_filterandadd_action`

    /******************************************************************************
    * - Define for bbPress interface
    *****************************************************************************/
    
    $bbemoticons = & new bbEmoticons();
    
    bb_add_filter('post_text', array(&$bbemoticons, 'convert_smilies'));
    //bb_head is not called always. :-)
    //bb_add_action('bb_head', array(&$bbemoticons, 'bb_grins_head'));
    bb_add_action('bb_feed_head', array(&$bbemoticons, 'bb_grins_head'));
    bb_add_action('bb_grins', array(&$bbemoticons, 'bb_grins'));
  21. Hi _ck_

    why when we put 3 or 2 smileys together and the second doesn't show picture? please help to advise on this.

    Regards,
    Evannak

  22. gnawph THANK YOU! Very good plugin without stupid emotions pop-up.

  23. You must log in to post.