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.
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!
intellivision
@intellivision
17 years, 1 month ago
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!