https://wordpress.org/support/topic/preventing-yarpp-settings-from-saving/#post-14230412 /admin/js/yikes-inc-easy-mailchimp-extender-admin.js - line 25 ``` $( 'body' ).on( 'click', '.disabled' , function() { return false; }); ``` should be something like ``` $( 'body' ).on( 'click', '.yikes-easy-mc-wrap .disabled' , function() { return false; }); ``` and admin pages should be updated to include the .yikes-easy-mc-wrap class.