MattyRob,
I followed all of the instructions you gave to bottlelot and now when I send a test email, nothing happens. No email gets sent at all.
Not sure where I would see the error message that bottlelot was seeing. I don’t get any error message, just nothing happens. When I deactivate the plugin, it starts working again. Here is what my plugin looks like:
<?php
/*
Plugin Name: Subscribe 2 – Turn Off Social Media
Plugin URI:
Description:
Version:
Author:
Author URI:
License:
License URI:
*/
function s2_social_links_off(){
return array();
}
add_filter(‘s2_social_links’, ‘s2_social_links_off’);
?>