Plugin Directory

Changeset 3141677


Ignore:
Timestamp:
08/26/2024 01:13:15 PM (15 months ago)
Author:
luizbills
Message:

Release 1.4.5, see readme.txt for the changelog.

Location:
woo-force-authentification-before-checkout
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • woo-force-authentification-before-checkout/tags/1.4.5/readme.txt

    r2998327 r3141677  
    44Tags: woocommerce, checkout, login, register, force, before, cart
    55Requires at least: 4.8
    6 Tested up to: 6.4
     6Tested up to: 6.6
    77Requires PHP: 7.3
    8 Stable tag: 1.4.4
     8Stable tag: 1.4.5
    99License: GPLv3
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3939
    4040== Changelog ==
     41
     42= 1.4.5 =
     43
     44* Tested up to WordPress 6.6
    4145
    4246= 1.4.4 =
  • woo-force-authentification-before-checkout/tags/1.4.5/woo-force-authentification-before-checkout.php

    r2998327 r3141677  
    33Plugin Name: Force Authentification Before Checkout for WooCommerce
    44Description: Force customer to log in or register before checkout
    5 Version: 1.4.4
     5Version: 1.4.5
    66Author: Luiz Bills
    77Author URI: https://luizpb.com/
     8
     9Requires Plugins: woocommerce
    810
    911License: GPLv3
     
    177179        if ( isset( $_COOKIE[ $cookie_name ] ) ) {
    178180            unset( $_COOKIE[ $cookie_name ] );
    179             setcookie( $cookie_name, null, -1 );
     181            setcookie( $cookie_name, '', -1 );
    180182        }
    181183    }
  • woo-force-authentification-before-checkout/trunk/readme.txt

    r2998327 r3141677  
    44Tags: woocommerce, checkout, login, register, force, before, cart
    55Requires at least: 4.8
    6 Tested up to: 6.4
     6Tested up to: 6.6
    77Requires PHP: 7.3
    8 Stable tag: 1.4.4
     8Stable tag: 1.4.5
    99License: GPLv3
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3939
    4040== Changelog ==
     41
     42= 1.4.5 =
     43
     44* Tested up to WordPress 6.6
    4145
    4246= 1.4.4 =
  • woo-force-authentification-before-checkout/trunk/woo-force-authentification-before-checkout.php

    r2998327 r3141677  
    33Plugin Name: Force Authentification Before Checkout for WooCommerce
    44Description: Force customer to log in or register before checkout
    5 Version: 1.4.4
     5Version: 1.4.5
    66Author: Luiz Bills
    77Author URI: https://luizpb.com/
     8
     9Requires Plugins: woocommerce
    810
    911License: GPLv3
     
    177179        if ( isset( $_COOKIE[ $cookie_name ] ) ) {
    178180            unset( $_COOKIE[ $cookie_name ] );
    179             setcookie( $cookie_name, null, -1 );
     181            setcookie( $cookie_name, '', -1 );
    180182        }
    181183    }
Note: See TracChangeset for help on using the changeset viewer.