bangdigital
Forum Replies Created
-
Forum: Plugins
In reply to: [reCaptcha by BestWebSoft] Script.js error of live functionThis error hasn’t been fixed in the latest version.
Forum: Plugins
In reply to: [reCaptcha by BestWebSoft] Script.js error of live functionFor anybody continuing with this problem.
Replace in script.js
if ( parseInt( $.fn.jquery ) >= 1.7 ) { $( '#recaptcha_widget_div' ).on( 'input paste change', '#recaptcha_response_field', cleanError ); } else { $( '#recaptcha_widget_div #recaptcha_response_field' ).live( 'input paste change', cleanError ); }With
if(!!$.fn.on) { $( '#recaptcha_widget_div' ).on( 'input paste change', '#recaptcha_response_field', cleanError ); } else { $( '#recaptcha_widget_div #recaptcha_response_field' ).live( 'input paste change', cleanError ); }Yes we had amended the css.
Many thanks for the swift response and excellent plugin.
Forum: Plugins
In reply to: [Bitly's Wordpress Plugin] Plugin generating links on autosaves and revisionsHi Mark,
Only updated today but it appears that your latest update ie. exiting out of the wpbitly_generate_shortlink function have corrected this problem.
Thanks again for a very helpful plugin.
Forum: Plugins
In reply to: [Bitly's Wordpress Plugin] Plugin generating links on autosaves and revisionsGetting a similar problem on one of our sites. Not sure what is the cause yet.
I haven’t changed it much if at all over time.
Has changed a bit though. Out of interest why you don’t just end execution of the function wpbitly_generate_shortlink when wp_is_post_revision returns with an ID?
Forum: Fixing WordPress
In reply to: Live preview and customize page is blinking on and offI had a similar problem which was one of my plugins had a frame breaker option selected.
Do you have HeadSpace as a plugin. If so – you will have to untick the frame breaker option.