Plugin Directory

Changeset 2968914


Ignore:
Timestamp:
09/19/2023 08:38:30 PM (2 years ago)
Author:
disablebloat
Message:

Update to version 3.4.2 from GitHub

Location:
disable-dashboard-for-woocommerce
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • disable-dashboard-for-woocommerce/tags/3.4.2/disable-dashboard-for-woocommerce.php

    r2964655 r2968914  
    55 * Plugin URI: https://disablebloat.com/
    66 * Description: All-in-One solution to speed up your WordPress & WooCommerce. Remove unnecessary features and make your site faster and cleaner.
    7  * Version: 3.4.0
     7 * Version: 3.4.2
    88 * Author: Disable Bloat
    99 * Developer: Disable Bloat
  • disable-dashboard-for-woocommerce/tags/3.4.2/includes/functions/disable-bloat-functions_free.php

    r2964655 r2968914  
    9999
    100100        // Stripe notice END
     101
     102
     103        // Fix for Select2 issue introduced after WooCommerce 8.1 release: https://github.com/woocommerce/woocommerce/issues/40151
     104
     105        function wcbloat_select2_fix_woo81()
     106        {
     107            echo '<style>
     108              :root {
     109            --wp-admin-theme-color: #007cba;
     110          }
     111            </style>';
     112        }
     113        add_action('admin_head', 'wcbloat_select2_fix_woo81');
    101114    }
    102115
  • disable-dashboard-for-woocommerce/tags/3.4.2/includes/settings/class-disable-bloat-settings-thirdparty.php

    r2964655 r2968914  
    512512    <input type='hidden' name='wcbloat_updraftplus_menubar_disable' value='no'>
    513513    <label><input type='checkbox' name='wcbloat_updraftplus_menubar_disable' <?php checked(esc_attr($value), 'yes'); echo wcbloat_is_pro_readonly(); ?> value='yes'> <?php esc_attr_e('Hide "UpdraftPlus" on admin toolbar', 'disable-dashboard-for-woocommerce'); echo wcbloat_is_pro_badge(); ?></label>
    514     <p><?php _e('This option will hide "UpdraftPlus" on admin toolbar. Works only if you are using “UpdraftPlus”. Please remember to add the scripts manually to your contact page.', 'disable-dashboard-for-woocommerce'); ?></p>
     514    <p><?php _e('This option will hide "UpdraftPlus" on admin toolbar. Works only if you are using “UpdraftPlus”.', 'disable-dashboard-for-woocommerce'); ?></p>
    515515<?php
    516516}
  • disable-dashboard-for-woocommerce/tags/3.4.2/readme.txt

    r2964655 r2968914  
    11=== Disable Bloat for WordPress & WooCommerce ===
    2 Contributors: disablebloat, ospiotr
     2Contributors: disablebloat, ospiotr, freemius
    33Tags: WooCommerce, disable WooCommerce admin, remove bloat, debloat, unbloat, Yoast SEO, white label, speed up WordPress
    4 Stable tag: 3.4.0
     4Stable tag: 3.4.2
    55Requires at least: 5.0
    66Tested up to: 6.3
     
    259259
    260260== Changelog ==
     261
     262= [3.4.2] - 2023-09-19 =
     263
     264- Fixed: Resolved a WooCommerce Select2 issue causing items on the dropdown list to disappear (compatibility with WooCommerce 8.1.0)
     265- Fixed: Compatibility with Rank Math SEO
     266
     267= [3.4.1] - 2023-09-11 =
     268
     269- Fixed: Hide “UpdraftPlus” on admin toolbar (PRO)
    261270
    262271= [3.4.0] - 2023-09-09 =
  • disable-dashboard-for-woocommerce/trunk/disable-dashboard-for-woocommerce.php

    r2964655 r2968914  
    55 * Plugin URI: https://disablebloat.com/
    66 * Description: All-in-One solution to speed up your WordPress & WooCommerce. Remove unnecessary features and make your site faster and cleaner.
    7  * Version: 3.4.0
     7 * Version: 3.4.2
    88 * Author: Disable Bloat
    99 * Developer: Disable Bloat
  • disable-dashboard-for-woocommerce/trunk/includes/functions/disable-bloat-functions_free.php

    r2964655 r2968914  
    9999
    100100        // Stripe notice END
     101
     102
     103        // Fix for Select2 issue introduced after WooCommerce 8.1 release: https://github.com/woocommerce/woocommerce/issues/40151
     104
     105        function wcbloat_select2_fix_woo81()
     106        {
     107            echo '<style>
     108              :root {
     109            --wp-admin-theme-color: #007cba;
     110          }
     111            </style>';
     112        }
     113        add_action('admin_head', 'wcbloat_select2_fix_woo81');
    101114    }
    102115
  • disable-dashboard-for-woocommerce/trunk/includes/settings/class-disable-bloat-settings-thirdparty.php

    r2964655 r2968914  
    512512    <input type='hidden' name='wcbloat_updraftplus_menubar_disable' value='no'>
    513513    <label><input type='checkbox' name='wcbloat_updraftplus_menubar_disable' <?php checked(esc_attr($value), 'yes'); echo wcbloat_is_pro_readonly(); ?> value='yes'> <?php esc_attr_e('Hide "UpdraftPlus" on admin toolbar', 'disable-dashboard-for-woocommerce'); echo wcbloat_is_pro_badge(); ?></label>
    514     <p><?php _e('This option will hide "UpdraftPlus" on admin toolbar. Works only if you are using “UpdraftPlus”. Please remember to add the scripts manually to your contact page.', 'disable-dashboard-for-woocommerce'); ?></p>
     514    <p><?php _e('This option will hide "UpdraftPlus" on admin toolbar. Works only if you are using “UpdraftPlus”.', 'disable-dashboard-for-woocommerce'); ?></p>
    515515<?php
    516516}
  • disable-dashboard-for-woocommerce/trunk/readme.txt

    r2964655 r2968914  
    11=== Disable Bloat for WordPress & WooCommerce ===
    2 Contributors: disablebloat, ospiotr
     2Contributors: disablebloat, ospiotr, freemius
    33Tags: WooCommerce, disable WooCommerce admin, remove bloat, debloat, unbloat, Yoast SEO, white label, speed up WordPress
    4 Stable tag: 3.4.0
     4Stable tag: 3.4.2
    55Requires at least: 5.0
    66Tested up to: 6.3
     
    259259
    260260== Changelog ==
     261
     262= [3.4.2] - 2023-09-19 =
     263
     264- Fixed: Resolved a WooCommerce Select2 issue causing items on the dropdown list to disappear (compatibility with WooCommerce 8.1.0)
     265- Fixed: Compatibility with Rank Math SEO
     266
     267= [3.4.1] - 2023-09-11 =
     268
     269- Fixed: Hide “UpdraftPlus” on admin toolbar (PRO)
    261270
    262271= [3.4.0] - 2023-09-09 =
Note: See TracChangeset for help on using the changeset viewer.