Changeset 3207888
- Timestamp:
- 12/14/2024 09:33:39 AM (12 months ago)
- Location:
- disable-email-notification-for-auto-updates
- Files:
-
- 1 added
- 4 edited
-
assets/screenshot-6.png (added)
-
tags/1.0.4/README.txt (modified) (2 diffs)
-
tags/1.0.4/includes/class-disable-plugin-updates.php (modified) (2 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/includes/class-disable-plugin-updates.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
disable-email-notification-for-auto-updates/tags/1.0.4/README.txt
r3207812 r3207888 67 67 = Why are some plugin updates not hidden? = 68 68 69 This plugin uses the default WordPress filter to block plugin updates. However, some premium plugins use their own APIs, which may bypass the default WordPress mechanisms. As a result, the code only blocks updates for plugins that follow the default WordPress update system. To mitigate this, we've added CSS and fallback JavaScript to hide the update notifications as much as possible. However, you may still notice some extra space due to these hidden notifications.69 This plugin uses the default WordPress filter to block plugin updates. However, some premium plugins use their own APIs, which may bypass the default WordPress mechanisms. As a result, the code only blocks updates for plugins that follow the default WordPress update system. To mitigate this, we've added CSS and fallback JavaScript to hide the update notifications as much as possible. 70 70 71 = Will Disable email Notification for auto-updates plugin stops plugin, themes or WordPress updates? =71 = Will Disable email Notification for auto-updates plugin stops plugin, themes or WordPress updates? = 72 72 73 73 No, this plugin will only disable the email notifications that you receive after an auto-updates of plugins, themes, or WordPress core. If Auto Updates are enabled, your plugins, themes, and WordPress will update automatically. … … 80 80 4. Block WP Core Updates 81 81 5. Block Theme Updates 82 6. Removes Plugin Updates notifications 82 83 83 84 == Changelog == -
disable-email-notification-for-auto-updates/tags/1.0.4/includes/class-disable-plugin-updates.php
r3207812 r3207888 18 18 19 19 // Output CSS 20 echo '#' . esc_attr( $plugin_slug ) . '-update .update-message.notice.inline.notice-warning.notice-alt { visibility: hidden!important; }'; 20 echo '#' . esc_attr( $plugin_slug ) . '-update .update-message.notice.inline.notice-warning.notice-alt { 21 visibility: hidden!important; 22 margin-bottom: -36px!important; 23 }'; 21 24 22 25 } … … 37 40 if (notice) { 38 41 notice.style.visibility = "hidden"; 42 notice.style.marginBottom = "-36px"; 39 43 }'; 40 44 } -
disable-email-notification-for-auto-updates/trunk/README.txt
r3207812 r3207888 67 67 = Why are some plugin updates not hidden? = 68 68 69 This plugin uses the default WordPress filter to block plugin updates. However, some premium plugins use their own APIs, which may bypass the default WordPress mechanisms. As a result, the code only blocks updates for plugins that follow the default WordPress update system. To mitigate this, we've added CSS and fallback JavaScript to hide the update notifications as much as possible. However, you may still notice some extra space due to these hidden notifications.69 This plugin uses the default WordPress filter to block plugin updates. However, some premium plugins use their own APIs, which may bypass the default WordPress mechanisms. As a result, the code only blocks updates for plugins that follow the default WordPress update system. To mitigate this, we've added CSS and fallback JavaScript to hide the update notifications as much as possible. 70 70 71 = Will Disable email Notification for auto-updates plugin stops plugin, themes or WordPress updates? =71 = Will Disable email Notification for auto-updates plugin stops plugin, themes or WordPress updates? = 72 72 73 73 No, this plugin will only disable the email notifications that you receive after an auto-updates of plugins, themes, or WordPress core. If Auto Updates are enabled, your plugins, themes, and WordPress will update automatically. … … 80 80 4. Block WP Core Updates 81 81 5. Block Theme Updates 82 6. Removes Plugin Updates notifications 82 83 83 84 == Changelog == -
disable-email-notification-for-auto-updates/trunk/includes/class-disable-plugin-updates.php
r3207812 r3207888 18 18 19 19 // Output CSS 20 echo '#' . esc_attr( $plugin_slug ) . '-update .update-message.notice.inline.notice-warning.notice-alt { visibility: hidden!important; }'; 20 echo '#' . esc_attr( $plugin_slug ) . '-update .update-message.notice.inline.notice-warning.notice-alt { 21 visibility: hidden!important; 22 margin-bottom: -36px!important; 23 }'; 21 24 22 25 } … … 37 40 if (notice) { 38 41 notice.style.visibility = "hidden"; 42 notice.style.marginBottom = "-36px"; 39 43 }'; 40 44 }
Note: See TracChangeset
for help on using the changeset viewer.