You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After a plugin has been updated this is what is seen:
• The following WordPress plugin has been updated by admin on the sp.dev website at http://sp.dev.
• The following WordPress theme has been updated by admin on the sp.dev website at http://sp.dev.
When a plugin update is available works as expected, though no notification is seen for a theme update being available. Per the screenshot below I would have expected to see a similar notification for the theme similar to the plugin notification, I also expect that both the plugin and theme updated notifications should be more verbose.
Note: I tested both a plugin and theme my manually lowering the version number in the plugin/theme manually and then updating via the normal WordPress process
The text was updated successfully, but these errors were encountered:
@briandeconinck Until an update is available, I resolved this issue on my WP installation by changing the following in wp-content/plugins/rock-the-slackbot/includes/hooks.php:
On line 821, change:
if ( 'core' != $upgrade_type ) {
to
if ( 'core' == $upgrade_type ) {
The above forces Rock the Slackbot into the correct part of the code, but will then cause a problem when updating a theme, so in order to at least make it work, I did the following:
After a plugin has been updated this is what is seen:
•
The following WordPress plugin has been updated by admin on the sp.dev website at http://sp.dev.
•
The following WordPress theme has been updated by admin on the sp.dev website at http://sp.dev.
When a plugin update is available works as expected, though no notification is seen for a theme update being available. Per the screenshot below I would have expected to see a similar notification for the theme similar to the plugin notification, I also expect that both the plugin and theme updated notifications should be more verbose.
Note: I tested both a plugin and theme my manually lowering the version number in the plugin/theme manually and then updating via the normal WordPress process
The text was updated successfully, but these errors were encountered: