Questions that are too localized (such as syntax errors, code with restricted access, hacked sites, hosting or support issues) are not in scope. See how do I ask a good question?
Closed 6 years ago.
Improve this questionI have a plugin that is on "Version 1.0"
When I update it (as indicated within my dashboard) it revers back to the same message.
The plugin is at "1.0" and the "update" is also at "1.0" so clearly there's an error or mismatch.
Question is: how do I remove the loop?
Thanks!
Closed. This question is off-topic. It is not currently accepting answers.Questions that are too localized (such as syntax errors, code with restricted access, hacked sites, hosting or support issues) are not in scope. See how do I ask a good question?
Closed 6 years ago.
Improve this questionI have a plugin that is on "Version 1.0"
When I update it (as indicated within my dashboard) it revers back to the same message.
The plugin is at "1.0" and the "update" is also at "1.0" so clearly there's an error or mismatch.
Question is: how do I remove the loop?
Thanks!
I'd just deactivate then uninstall then install again. Depending on the plugin, you might lose some customization or settings. But a lot of plugins don't remove anything they stored in the wp-options table (normally where plugin options are stored), so you may not lose any settings.
But I'd go to the plugins' support page. That's the best place for plugin support.
Added
Since the plugin support route didn't work, perhaps you can 'force' the plugin not to be checked for updates.
This question has some ways to do it: https://stackoverflow/questions/17897044/wordpress-how-to-disable-plugin-update
with this code (adjust for the plugin's folder):
add_filter('site_transient_update_plugins', 'remove_update_notification');
function remove_update_notification($value) {
unset($value->response[ plugin_basename(__FILE__) ]);
return $value;
}
Put that in the site's function.php (optimally in a Child Theme), or in a (possibly private) plugin of your own.