Forums

Join
bbPress Support ForumsPluginsComment Quicktag aggravation

Info

Comment Quicktag aggravation

  1. I'm going crazy trying to get this to work.

    I tried

    http://wordpress.org/extend/plugins/comment-quicktags/

    AND

    http://www.40annibuttati.it/comment-quicktags-for-bbpress/

    that.

    STILL no quicktags. I activate them, de-activate them, re-upload them. Everything I can think of I do.

    Help!

  2. Fixed. It was the path to the .js file that got changed with the template change. Check this in your source code, and if the path isn't correct the buttons won't show.

  3. To clarify - on or about line 75, find:

    $scripturl = bb_get_option ('uri') . 'my-plugins/js_quicktags.js';
    $thisurl = bb_get_option ('uri') . 'my-plugins/' . basename(__FILE__);

    Change to:

    $scripturl = bb_get_option ('uri') . '/my-plugins/js_quicktags.js';
    $thisurl = bb_get_option ('uri') . '/my-plugins/' . basename(__FILE__);

    In short, change the two instances of my-plugins/ to /my-plugins/

    Great plugin, thanks!

  4. You must log in to post.