Plugin Directory

Changeset 3387268


Ignore:
Timestamp:
10/30/2025 07:37:27 PM (4 months ago)
Author:
agechecker
Message:

Improved checkout form detection

Location:
agecheckernet
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • agecheckernet/trunk/agechecker.php

    r3329934 r3387268  
    44Plugin URI:  https://agechecker.net
    55Description: AgeChecker.Net seamlessly and securely verifies the age of your customers directly on your website during the checkout process. Keep your site up to date on the latest age regulations for your industry while ensuring that purchasing is frustration-free for your site users.
    6 Version:     1.20.4
     6Version:     1.20.6
    77Author:      AgeChecker.Net
    88Author URI:  https://agechecker.net
  • agecheckernet/trunk/class-wc-integration-agechecker-integration.php

    r3358158 r3387268  
    23962396            }
    23972397
     2398            $reqData = $req->get_param('data');
    23982399            $orderId = wc_get_order_id_by_order_key($req['orderKey']);
     2400            $order = wc_get_order($orderId);
     2401            if ($order) {
     2402                $customerEmail = $order->get_billing_email();
     2403                if ($customerEmail) $reqData['email'] = $customerEmail;
     2404            }
    23992405
    24002406            $url = "https://api.agechecker.net/v1/create";
     
    24032409                'key'      => $req['key'],
    24042410                'secret'   => $this->secret,
    2405                 'data'     => $req['data'],
     2411                'data'     => $reqData,
    24062412                'require'  => $req['require'],
    24072413                'options'  => [
  • agecheckernet/trunk/readme.txt

    r3358158 r3387268  
    33Tags: age checker, age check, AgeChecker.Net, check age, verify age
    44Requires at least: 4.4
    5 Tested up to: 6.7
    6 Stable tag: 1.20.5
     5Tested up to: 6.8
     6Stable tag: 1.20.6
    77
    88AgeChecker.Net seamlessly and securely verifies the age of your customers directly on your website during the checkout process.
     
    6363== Changelog ==
    6464
     65= 1.20.6 =
     66*Release Date - 30 October 2025*
     67
     68* Improved checkout form detection
     69
    6570= 1.20.5 =
    6671*Release Date - 08 September 2025*
Note: See TracChangeset for help on using the changeset viewer.