@john.horning
I’m not seeing this issue myself on testing, what version are you using and have you checked for plugin conflicts?
I am using plugin Version 10.18.1, WordPress 4.1, have deactivated all other plugins, and even switched to the 2015 theme. Still can’t set “Receive periodic summaries of new posts?” to “Yes”. Is this perhaps because I am an admin? One other thing, I have a custom post type and have modified my theme per instructions found here:
http://subscribe2.wordpress.com/2011/02/28/subscribe2-and-custom-post-types/
although this is only in effect when my PremiumPress theme is activated.
John
@john.horning
Being admin level shouldn’t make any difference and I’m using virtually identical code base to you. Can you post your custom post type code here so we can check it for errors?
This is what I added to the functions.php file in the theme’s folder:
function my_post_types($types) {
$types[] = ‘coupon_type’;
return $types;
}
add_filter(‘s2_post_types’, ‘my_post_types’);
It seems to work, too. On the Subscribe2 settings page, I see this:
“Subscribe2 will send email notifications for the following custom post types: Coupon_type”
But like I said, I get the error even when I switch themes.
@john.horning
Thee is nothing wrong in that code. Have you used any of the ReadyGraph features? If you change to per-post emails(rather than digest) do the settings now save?
I have not activated ReadyGraph. I do have good news, however. I am now able to set notifications to yes! Unfortunately, I don’t know what I changed to make this happen. This is a brand new blog. Perhaps it’s because I didn’t have content before? At any rate, thanks for your help. You can mark as resolved.