After I spent 2 hours fixing one of my sites… I’m just adding this to the main php file for the plugin for the other sites I used the plugin on, and will just leave it at that. I really enjoyed 2 hours of repairing the buttons, toggles, accordions, and other features I used that no longer respond to the new plugin the same way:
add_filter('site_transient_update_plugins', 'dd_remove_update_nag');
function dd_remove_update_nag($value) {
unset($value->response[ plugin_basename(__FILE__) ]);
return $value;
}
This removes the update notice.
While I appreciate the need to update plugins and such… This plugin now is virtually incompatible with the old. Toggles respond with different markup, buttons are different… It’s a big mess. Thanks for making it in the first place, but bad form on the revision.