Plugin Directory

Changeset 3164404


Ignore:
Timestamp:
10/07/2024 03:12:27 PM (17 months ago)
Author:
inspry
Message:

Update to version 1.0.22 from GitHub

Location:
agency-toolkit
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • agency-toolkit/tags/1.0.22/functions/disable_auto_update_emails.php

    r3155248 r3164404  
    1313// Disable Admin Notification of User Password Change
    1414remove_action( 'after_password_reset', 'wp_password_change_notification' );
     15
     16// Disable WooCommerce Admin Notification of User Password Change
     17add_filter('woocommerce_disable_password_change_notification', function() {
     18    return true;
     19});
    1520
    1621// Disable update notifications - WP Core
  • agency-toolkit/tags/1.0.22/main.php

    r3155248 r3164404  
    33Plugin Name: Agency Toolkit
    44Description: Lightweight and modular client site tools to empower your agency.
    5 Version: 1.0.21
     5Version: 1.0.22
    66Author: Inspry
    77Author URI: https://www.inspry.com/
  • agency-toolkit/tags/1.0.22/readme.txt

    r3155248 r3164404  
    7171
    7272== Changelog ==
     73= 1.0.22 =
     74* Bug Fix: Fixed an issue where admin emails were still being sent to administrators, despite the option being disabled, on sites with WooCommerce installed.
     75
    7376= 1.0.21 =
    7477* Bug Fix: Modified the correction from 1.0.20.
  • agency-toolkit/trunk/functions/disable_auto_update_emails.php

    r3155248 r3164404  
    1313// Disable Admin Notification of User Password Change
    1414remove_action( 'after_password_reset', 'wp_password_change_notification' );
     15
     16// Disable WooCommerce Admin Notification of User Password Change
     17add_filter('woocommerce_disable_password_change_notification', function() {
     18    return true;
     19});
    1520
    1621// Disable update notifications - WP Core
  • agency-toolkit/trunk/main.php

    r3155248 r3164404  
    33Plugin Name: Agency Toolkit
    44Description: Lightweight and modular client site tools to empower your agency.
    5 Version: 1.0.21
     5Version: 1.0.22
    66Author: Inspry
    77Author URI: https://www.inspry.com/
  • agency-toolkit/trunk/readme.txt

    r3155248 r3164404  
    7171
    7272== Changelog ==
     73= 1.0.22 =
     74* Bug Fix: Fixed an issue where admin emails were still being sent to administrators, despite the option being disabled, on sites with WooCommerce installed.
     75
    7376= 1.0.21 =
    7477* Bug Fix: Modified the correction from 1.0.20.
Note: See TracChangeset for help on using the changeset viewer.