Info
- 3 posts
- 2 voices
- Started 4 years ago by intellivision
- Latest reply from RoseCitySister
- This topic is resolved
Comment Quicktag aggravation
-
- Posted 4 years 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!
-
- Posted 4 years ago #
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.
-
- Posted 3 years ago #
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!
-
You must log in to post.