Malle
Forum Replies Created
-
Forum: Plugins
In reply to: [GD bbPress Tools] Quote functionality broken in WP 3.9 and GD BBp 1.5.1should be in gd-bbpress-tools.js
Forum: Plugins
In reply to: [GD bbPress Tools] Quote button not working with TinyMCELook into this Thread for further Informations, where to alter the Script.
I hope it will be fixed in a future Version.
http://ww.wp.xz.cn/support/topic/quote-functionality-broken-in-wp-39-and-gd-bbp-151?replies=3
Forum: Plugins
In reply to: [GD bbPress Tools] Quote button not working with TinyMCEhttp://stackoverflow.com/a/23202793
/* get the TinyMCE version to account for API diffs */
var tmce_ver=window.tinyMCE.majorVersion;if (tmce_ver>=”4″) {
window.tinyMCE.execCommand(‘mceInsertContent’, false, tagtext);
} else {
window.tinyMCE.execInstanceCommand(‘content’, ‘mceInsertContent’, false, tagtext);
}Big Quotes to: Scott B
This works for me-
Forum: Plugins
In reply to: [GD bbPress Tools] Quote functionality broken in WP 3.9 and GD BBp 1.5.1http://stackoverflow.com/a/23202793
/* get the TinyMCE version to account for API diffs */
var tmce_ver=window.tinyMCE.majorVersion;if (tmce_ver>=”4″) {
window.tinyMCE.execCommand(‘mceInsertContent’, false, tagtext);
} else {
window.tinyMCE.execInstanceCommand(‘content’, ‘mceInsertContent’, false, tagtext);
}Big Quotes to: Scott B
This works for me-