I received the email with the token link.
I was able to track down the cause to the theme. You are not the first user to experience this issue:
Their issue was the opposite though, it was changing https to http.
The theme’s filter basically forces SSL or not on all URLs run thru the core WP function to escape (clean) URLs based on whether the calling page is SSL or not.
Such a filter is fine if all the links are only ever going to be internal to the site but as you’ve experience this is not good if another plugin uses URLs and they are external.
To correct this issue, I installed the Code Snippets plugin and added the following snippet:
function cn_remove_maya_clean_url_filter() {
remove_filter( 'clean_url', 'yiw_ssl_url' );
}
add_action( 'after_setup_theme', 'cn_remove_maya_clean_url_filter' );
This removes the filter added by the theme allowing WP to filter URLs normally again.
I’ll also include in this in the next Connections update.
Hope this helps!
