Plugin Directory

Changeset 3225568


Ignore:
Timestamp:
01/20/2025 12:26:51 PM (14 months ago)
Author:
dansart
Message:

Update 1.9.4

Location:
add-customer-for-woocommerce/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • add-customer-for-woocommerce/trunk/add-customer-for-woocommerce.php

    r3200145 r3225568  
    88 * Contributors URL: http://dev.dans-art.ch
    99 * Tags: woocommerce, customer, tools, helper
    10  * Version: 1.9.3
    11  * Stable tag: 1.9.3
     10 * Version: 1.9.4
     11 * Stable tag: 1.9.4
    1212 *
    1313 * Requires at least: 5.4.0
     
    1515 *
    1616 * WC requires at least: 7.4.1
    17  * WC tested up to: 9.4.2
     17 * WC tested up to: 9.5.2
    1818 *
    1919 * Requires PHP: 7.4
  • add-customer-for-woocommerce/trunk/include/classes/wac-compatibility.php

    r3145489 r3225568  
    4141            });
    4242        }
     43
     44        //Workaround for Enhanced Cloudflare Turnstile
     45        //https://woocommerce.com/products/enhanced-cloudflare-turnstile/
     46        //Tested with Version: 1.0.2
     47        //Removed the register hook if new customer gets added
     48        if (is_admin() and isset($_REQUEST['wac_add_customer']) and $_REQUEST['wac_add_customer'] == 'true') {
     49            remove_action( 'woocommerce_register_post', 'ecft_validate_woo_register_form', 10 );
     50        }
    4351    }
    4452
  • add-customer-for-woocommerce/trunk/readme.txt

    r3200145 r3225568  
    77Requires at least: 5.4.0
    88Tested up to: 6.7.1
    9 Stable tag: 1.9.3
     9Stable tag: 1.9.4
    1010License: GPLv3 or later
    1111License URI: <http://www.gnu.org/licenses/gpl-2.0.html>
    1212WC requires at least: 7.4.1
    13 WC tested up to: 9.4.2
     13WC tested up to: 9.5.2
    1414Requires PHP: 7.4
    1515
     
    9595
    9696== Changelog ==
     97
     98= [1.9.4] 2025-01-17 =
     99* Added compatibility for Enhanced Cloudflare Turnstile
     100* Updated WC Tested up to version
    97101
    98102= [1.9.3] 2024-12-01 =
Note: See TracChangeset for help on using the changeset viewer.