Here’s a possible fix for when the plugin doesn’t work
-
I’m reposting this from my reply to another thread, since it may address the problem that so many of the recent “it doesn’t work” threads are having.
I found a StackExchange thread that offered a solution. I tested it (with a tweak to make it pull the site’s URL dynamically) and added this code into the plugin directly, and it solved the problem for me:
add_filter('allowed_http_origins', function($origins) { $origins[] = home_url(''); return $origins; });
Obviously if/when the plugin is updated and this fix is not part of that update, the change will get lost. This could easily go into your theme’s
functions.php
file instead.
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
- The topic ‘Here’s a possible fix for when the plugin doesn’t work’ is closed to new replies.