Plugin Directory

Changeset 2567351


Ignore:
Timestamp:
07/19/2021 01:46:39 PM (5 years ago)
Author:
checkoutx
Message:

Release version 1.2.1

Location:
checkoutx
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • checkoutx/tags/1.2.1/README.txt

    r2551464 r2567351  
    33Tags: checkout, one page checkout, upsell, post-purchase upsell, automatic discount, woocommerce, e-commerce, payment, abandoned cart, AOV, conversion, WooCommerce checkout
    44Requires at least: 5.4
    5 Tested up to: 5.7
    6 Stable tag: 1.2.0
     5Tested up to: 5.8
     6WC tested up to: 5.5.1
     7Stable tag: 1.2.1
    78Requires PHP: 7.0
    89License: GPLv2 or later
     
    145146== Changelog ==
    146147
    147 = 1.2.0 - 2021-05-12 =
    148 * Add support for Checkout X API v2
     148= 1.2.1 - 2021-07-19
     149* Add support for PHP 8
    149150
    150151[See changelog for all versions](https://plugins.svn.wordpress.org/checkoutx/trunk/changelog.txt).
  • checkoutx/tags/1.2.1/changelog.txt

    r2551451 r2567351  
     1= 1.2.1 - 2021-07-19
     2* Add support for PHP 8
     3
    14= 1.2.0 - 2021-05-12 =
    25* Add support for Checkout X API v2
  • checkoutx/tags/1.2.1/checkout-x.php

    r2534775 r2567351  
    1818 * Plugin URI:        https://www.checkout-x.com
    1919 * Description:       Checkout X boosts your revenue with a high-converting, frictionless, mobile-first checkout experience for your WooCommerce store. Get less abandoned carts and more sales with a fast checkout that completes itself on any device to give you more conversions and average order value.
    20  * Version:           1.2.0
     20 * Version:           1.2.1
    2121 * Author:            Checkout X
     22 * Tested up to:      5.8
     23 * WC tested up to:   5.5.1
    2224 * Author URI:        https://www.checkout-x.com/?utm_source=partner&utm_medium=woocommerce-marketplace
    2325 * License:           GPL-2.0+
  • checkoutx/tags/1.2.1/public/class-public.php

    r2534775 r2567351  
    274274
    275275      $cart = WC()->cart;
     276      $coupons = $cart->get_applied_coupons();
     277      $discount_code = isset($coupons[0]) ? $coupons[0] : null;
     278
    276279      $data = array(
    277280        "shop_id" => get_option("checkout_x_shop_id"),
    278281        "items" => $this->build_checkout_items($cart),
    279         "discount_code" => $cart->get_applied_coupons()[0],
     282        "discount_code" => $discount_code,
    280283        "client_id" => $this->client_id(),
    281284      );
  • checkoutx/trunk/README.txt

    r2551464 r2567351  
    33Tags: checkout, one page checkout, upsell, post-purchase upsell, automatic discount, woocommerce, e-commerce, payment, abandoned cart, AOV, conversion, WooCommerce checkout
    44Requires at least: 5.4
    5 Tested up to: 5.7
    6 Stable tag: 1.2.0
     5Tested up to: 5.8
     6WC tested up to: 5.5.1
     7Stable tag: 1.2.1
    78Requires PHP: 7.0
    89License: GPLv2 or later
     
    145146== Changelog ==
    146147
    147 = 1.2.0 - 2021-05-12 =
    148 * Add support for Checkout X API v2
     148= 1.2.1 - 2021-07-19
     149* Add support for PHP 8
    149150
    150151[See changelog for all versions](https://plugins.svn.wordpress.org/checkoutx/trunk/changelog.txt).
  • checkoutx/trunk/changelog.txt

    r2551451 r2567351  
     1= 1.2.1 - 2021-07-19
     2* Add support for PHP 8
     3
    14= 1.2.0 - 2021-05-12 =
    25* Add support for Checkout X API v2
  • checkoutx/trunk/checkout-x.php

    r2534775 r2567351  
    1818 * Plugin URI:        https://www.checkout-x.com
    1919 * Description:       Checkout X boosts your revenue with a high-converting, frictionless, mobile-first checkout experience for your WooCommerce store. Get less abandoned carts and more sales with a fast checkout that completes itself on any device to give you more conversions and average order value.
    20  * Version:           1.2.0
     20 * Version:           1.2.1
    2121 * Author:            Checkout X
     22 * Tested up to:      5.8
     23 * WC tested up to:   5.5.1
    2224 * Author URI:        https://www.checkout-x.com/?utm_source=partner&utm_medium=woocommerce-marketplace
    2325 * License:           GPL-2.0+
  • checkoutx/trunk/public/class-public.php

    r2534775 r2567351  
    274274
    275275      $cart = WC()->cart;
     276      $coupons = $cart->get_applied_coupons();
     277      $discount_code = isset($coupons[0]) ? $coupons[0] : null;
     278
    276279      $data = array(
    277280        "shop_id" => get_option("checkout_x_shop_id"),
    278281        "items" => $this->build_checkout_items($cart),
    279         "discount_code" => $cart->get_applied_coupons()[0],
     282        "discount_code" => $discount_code,
    280283        "client_id" => $this->client_id(),
    281284      );
Note: See TracChangeset for help on using the changeset viewer.