Dan & Jennifer
Forum Replies Created
-
Anyone?
Alos, is there a plugin update planned anytime son?
Thanks!
Forum: Plugins
In reply to: [ReCaptcha Integration for WordPress] Invisible RecaptchaI am wondering the same thing… Is there a planned date to support the new Invisible ReCaptcha that Google just rolled out recently?
Thanks!
Forum: Plugins
In reply to: [Pinterest RSS Widget] HTTPS not fully supportedYep, same here… I literally came on here to make this same support note. ??
What did you change exactly? just the URL of the pinterest image to to the SSL version?
https://passets-cdn.pinterest.com/images/pinterest-button.png
Has anyone else seen this in the Microsoft Edge browser?
Thanks!
Forum: Plugins
In reply to: [Genesis Latest Tweets] Any news on further updates for this plugin?Anyone? ??
Thanks!
Forum: Plugins
In reply to: [WP LinkedIn] Issue with network activation requirement…So everyone will always see that message at the top? What if they don’t have a LinkedIn Account? How do they get rid of the message?
Forum: Plugins
In reply to: [WP LinkedIn] Issue with network activation requirement…Hi there.
Just the WP-LinkedIn plugin. Do I need the extension?
Hi there!
Thanks for the workaround.
One example…
This:
<meta name="p:domain_verify" content="asdfasdfasdfsadfasdfsadfsda"/> <script src="//a.mailmunch.co/app/v1/site.js" id="mailmunch-script" data-mailmunch-site-id="2232323" async="async"></script>
Becomes this after submitting:
<script src="//a.mailmunch.co/app/v1/site.js" async="async"></script>
Is this scrubbing a new feature in the latest version of the plugin?
It would be really great to have a setting in wp-options to disable it. ??
Thanks!
Ajay, quick update – i just verified that I’m still able to added this exact code to the Genesis “Header Scripts” and “footer scripts” text boxes. Wanted to make sure it’s not a wordpress related thing…
Screenshot: https://www.screencast.com/t/5sm6tJZo
But Add To All is stripping things now for some reason… and it never did that before, we could reliably add any code snippets required to header/footer.
this workaround only works on themes that are based on Genesis and it’s non-standard… so hoping to find a workaround for Add To All.
Thanks!
Anyone? ??
Hey Ajay, this seems to be a much bigger problem than we first thought.
Before this latest update, we could paste any HTML, CSS, Javascript in these 2 text boxes and they would just be added – it always worked.
Now we are seeing various things being silently stripped.
Here is an example of what’s happening today… some MailMunch, but also another meta tag provided by a site to verify domain ownership.
<meta name="p:domain_verify" content="xxxx"/> <script src="//a.mailmunch.co/app/v1/site.js" id="mailmunch-script" data-mailmunch-site-id="2342343234" async="async"></script>
Are these new sanitization functions that have been added?
and more importantly, how can we disable them so we can use the plugin as before? ??
Please advise.
Thanks!
Sure.
Here’s the before:
<!-- Paste this code right before the </head> tag on every page of your site. --> <script src="//a.mailmunch.co/app/v1/site.js" id="mailmunch-script" data-mailmunch-site-id="123456" async="async"></script>
Here’s the after:
<!-- Paste this code right before the </head> tag on every page of your site. --> <script src="//a.mailmunch.co/app/v1/site.js" async="async"></script>
Forum: Plugins
In reply to: [EasyAzon - Amazon Associates Affiliate Plugin] SSL SupportOK, found the problem in the code and fixed it. here’s the solution – thankfully very simple, as expected.
odd they’ve known about this for a year and taken time to reply to various tickets on it, yet it only took someone with zero familiarity with the EasyAzon code 45 mins to locate the problem and fix it.
Edit this file: wp-content > plugins > EasyAzon Pro directory > components > shortcodes > info-block > info-block.php
line 81
replace this line:
‘src’ => $item[‘images’][$image_index][‘url’],with these lines:
//
// fix for SSL mixed-content error – always use Amazon SSL image URLs
//’src’ => $item[‘images’][$image_index][‘url’],
‘src’ => str_replace(“https://ecx.images-amazon.com/”,”https://images-na.ssl-images-amazon.com/”, $item[‘images’][$image_index][‘url’] ),
//Forum: Plugins
In reply to: [EasyAzon - Amazon Associates Affiliate Plugin] SSL Support@mac4media have you found a workaround since?
It’s a good plugin, but going from an solid SSL site to a site full of SSL mixed-content errors because of a poor image embed (which is so easy to fix) is not a good thing.
Forum: Plugins
In reply to: [EasyAzon - Amazon Associates Affiliate Plugin] Confirm PHP 7 Compatibility?works fine on PHP7.