Plugin Author
benz1
(@benz1)
Sorry to hear you’re having problems with v1.5. I’ve been using it extensively myself without problem and have not had any reports from other users so it may be a conflict with one of your other plugins.
Do you mean WP3.4.1 or are you still using 3.2.x? Have you tried in a different browser? Can you also please let me know what browser and version you’re using?
A list of plugins you’re using and the theme would also be helpful if you are able to provide.
Thanks,
Benz1
I have the same issue as Start1.
I’m running WP 3.4.1 and the last version of global content block. This combination doesn’t work. I have an issue on javascript file editor_plugin.js on line 39 :
if(im.length>1) img=im[1].replace(/^\s+/,"");//ltrim - a white space creeps out in the left; maybe regexe's fault ?
The problem seems to be that im is null at this point ant it cannot call the method length on null object.
Maybe just a simple test on im would solve the issue !
However, on another blog, I use WP 3.4 and the version 1.4.1 of your plugin. This work correctly !
After testing on my website, this is a solution :
if(im !== null && im.length>1) img=im[1].replace(/^\s+/,"");//ltrim - a white space creeps out in the left; maybe regexe's fault ?
I’m not an expert in JavaScript so you may have a better solution.
Plugin Author
benz1
(@benz1)
Thanks for the info. I’m unable to reproduce the problem and in theory it shouldn’t be an issue but I will add your fix and do an update on the repository later today to 1.5.1. Hopefuly this will resolve it.
Thanks,
Benz1
Plugin Author
benz1
(@benz1)
Global Content Blocks v1.5.1 is now available on the repository that includes a fix for this issue.
Please let me know if you have any further problems.
If you use and like this plugin please give it a rating at http://wordpress.org/extend/plugins/global-content-blocks/ 🙂
Thanks,
Ben
Hi Ben !
Thank you very much for your reactivity !
I have updated the plugin with the new version and it works perfectly now (without any personal change).
Thanks
Fred