Fenix01
Forum Replies Created
-
Forum: Plugins
In reply to: [GD bbPress Tools] Bug with multiple quotes [found a patch]Hi kalico 🙂
You have probably a syntax error in your functions.php file. This is current to have a white screen of the death with wordpress while editing this file. WordPress considers this file like a core file so any syntax error breaks your website.
If you have a log file provided by your web host, you can check where is the syntax error. It will display the line and the file where the error has been detected.Forum: Plugins
In reply to: [GD bbPress Tools] Bug with multiple quotes [found a patch]oh, you’re right that’s pretty annoying … But your method is probably the only way to find and replace html entities :s For count fields, you could try to make an sql request to update each row
Forum: Plugins
In reply to: [GD bbPress Tools] Bug with multiple quotes [found a patch]Hi Daniel !
I don’t understand what is the other problem you are referring to ?
Could you describe me this problem ?Forum: Plugins
In reply to: [GD bbPress Tools] Ugly code is showing up randomlyHi, I have exactly the same problem.
Multiple quotes don’t work without admin rights.
You may found an example here :
http://forum.my-shield.com/topic/example/#post-199Forum: Plugins
In reply to: [GD bbPress Tools] Quote functionality broken in WP 3.9 and GD BBp 1.5.1Hi Guys !
I solve the problem and thx to male for the tip.
patch for wordpress 3.9.1 :
locate /wp-content/plugins/gd-bbpress-tools/js/gd-bbpress-tools.js
replace
tinyMCE.execInstanceCommand("bbp_reply_content", "mceInsertContent", false, qout);by
if (tinyMCE.majorVersion>="4") { tinyMCE.execCommand('mceInsertContent', false, qout); } else { tinyMCE.execInstanceCommand("bbp_reply_content", "mceInsertContent", false, qout); }