Brian Zoetewey
Forum Replies Created
-
Forum: Plugins
In reply to: [Constant Contact Forms] missing vender autoload from psr vender library@constantcontact Have these updates/fixes been included in the release yet? We just ran into the issue as well and downgraded in the meantime.
- This reply was modified 8 years ago by Brian Zoetewey.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] AJAX Error on httpsFulvio, thanks for looking into this. I’ve dug through the code and it actually appears to be an issue with the domain mapping plugin in use on the site. The domain mapping plugin is generating the incorrect URL when
admin_url( )is called. Your plugin is working correctly.If using the “Start from scratch . . .” option, then line 452 needs to change as well.
from:
return 'http://' . $_SERVER['HTTP_HOST'] . '/wp-content/plugins/safecss/blank.css';
to:
return plugins_url( 'blank.css', __FILE__ );For me, I edited the files I needed and added the necessary _wponce hidden input field.
<input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('my-calendar-nonce'); ?>" />