Plugin Directory

Changeset 3207888


Ignore:
Timestamp:
12/14/2024 09:33:39 AM (12 months ago)
Author:
ideastocode
Message:

Updated Screenshot

Location:
disable-email-notification-for-auto-updates
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • disable-email-notification-for-auto-updates/tags/1.0.4/README.txt

    r3207812 r3207888  
    6767= Why are some plugin updates not hidden? =
    6868
    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.
     69This 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.
    7070
    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? =
    7272
    7373No, 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.
     
    80804. Block WP Core Updates
    81815. Block Theme Updates
     826. Removes Plugin Updates notifications
    8283
    8384== Changelog ==
  • disable-email-notification-for-auto-updates/tags/1.0.4/includes/class-disable-plugin-updates.php

    r3207812 r3207888  
    1818
    1919                // 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                }';
    2124
    2225            }
     
    3740                if (notice) {
    3841                    notice.style.visibility = "hidden";
     42                    notice.style.marginBottom = "-36px";
    3943                }';
    4044            }
  • disable-email-notification-for-auto-updates/trunk/README.txt

    r3207812 r3207888  
    6767= Why are some plugin updates not hidden? =
    6868
    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.
     69This 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.
    7070
    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? =
    7272
    7373No, 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.
     
    80804. Block WP Core Updates
    81815. Block Theme Updates
     826. Removes Plugin Updates notifications
    8283
    8384== Changelog ==
  • disable-email-notification-for-auto-updates/trunk/includes/class-disable-plugin-updates.php

    r3207812 r3207888  
    1818
    1919                // 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                }';
    2124
    2225            }
     
    3740                if (notice) {
    3841                    notice.style.visibility = "hidden";
     42                    notice.style.marginBottom = "-36px";
    3943                }';
    4044            }
Note: See TracChangeset for help on using the changeset viewer.