Changeset 2567351
- Timestamp:
- 07/19/2021 01:46:39 PM (5 years ago)
- Location:
- checkoutx
- Files:
-
- 8 edited
- 1 copied
-
tags/1.2.1 (copied) (copied from checkoutx/trunk)
-
tags/1.2.1/README.txt (modified) (2 diffs)
-
tags/1.2.1/changelog.txt (modified) (1 diff)
-
tags/1.2.1/checkout-x.php (modified) (1 diff)
-
tags/1.2.1/public/class-public.php (modified) (1 diff)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/changelog.txt (modified) (1 diff)
-
trunk/checkout-x.php (modified) (1 diff)
-
trunk/public/class-public.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
checkoutx/tags/1.2.1/README.txt
r2551464 r2567351 3 3 Tags: checkout, one page checkout, upsell, post-purchase upsell, automatic discount, woocommerce, e-commerce, payment, abandoned cart, AOV, conversion, WooCommerce checkout 4 4 Requires at least: 5.4 5 Tested up to: 5.7 6 Stable tag: 1.2.0 5 Tested up to: 5.8 6 WC tested up to: 5.5.1 7 Stable tag: 1.2.1 7 8 Requires PHP: 7.0 8 9 License: GPLv2 or later … … 145 146 == Changelog == 146 147 147 = 1.2. 0 - 2021-05-12 =148 * Add support for Checkout X API v2148 = 1.2.1 - 2021-07-19 149 * Add support for PHP 8 149 150 150 151 [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 1 4 = 1.2.0 - 2021-05-12 = 2 5 * Add support for Checkout X API v2 -
checkoutx/tags/1.2.1/checkout-x.php
r2534775 r2567351 18 18 * Plugin URI: https://www.checkout-x.com 19 19 * 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. 020 * Version: 1.2.1 21 21 * Author: Checkout X 22 * Tested up to: 5.8 23 * WC tested up to: 5.5.1 22 24 * Author URI: https://www.checkout-x.com/?utm_source=partner&utm_medium=woocommerce-marketplace 23 25 * License: GPL-2.0+ -
checkoutx/tags/1.2.1/public/class-public.php
r2534775 r2567351 274 274 275 275 $cart = WC()->cart; 276 $coupons = $cart->get_applied_coupons(); 277 $discount_code = isset($coupons[0]) ? $coupons[0] : null; 278 276 279 $data = array( 277 280 "shop_id" => get_option("checkout_x_shop_id"), 278 281 "items" => $this->build_checkout_items($cart), 279 "discount_code" => $ cart->get_applied_coupons()[0],282 "discount_code" => $discount_code, 280 283 "client_id" => $this->client_id(), 281 284 ); -
checkoutx/trunk/README.txt
r2551464 r2567351 3 3 Tags: checkout, one page checkout, upsell, post-purchase upsell, automatic discount, woocommerce, e-commerce, payment, abandoned cart, AOV, conversion, WooCommerce checkout 4 4 Requires at least: 5.4 5 Tested up to: 5.7 6 Stable tag: 1.2.0 5 Tested up to: 5.8 6 WC tested up to: 5.5.1 7 Stable tag: 1.2.1 7 8 Requires PHP: 7.0 8 9 License: GPLv2 or later … … 145 146 == Changelog == 146 147 147 = 1.2. 0 - 2021-05-12 =148 * Add support for Checkout X API v2148 = 1.2.1 - 2021-07-19 149 * Add support for PHP 8 149 150 150 151 [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 1 4 = 1.2.0 - 2021-05-12 = 2 5 * Add support for Checkout X API v2 -
checkoutx/trunk/checkout-x.php
r2534775 r2567351 18 18 * Plugin URI: https://www.checkout-x.com 19 19 * 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. 020 * Version: 1.2.1 21 21 * Author: Checkout X 22 * Tested up to: 5.8 23 * WC tested up to: 5.5.1 22 24 * Author URI: https://www.checkout-x.com/?utm_source=partner&utm_medium=woocommerce-marketplace 23 25 * License: GPL-2.0+ -
checkoutx/trunk/public/class-public.php
r2534775 r2567351 274 274 275 275 $cart = WC()->cart; 276 $coupons = $cart->get_applied_coupons(); 277 $discount_code = isset($coupons[0]) ? $coupons[0] : null; 278 276 279 $data = array( 277 280 "shop_id" => get_option("checkout_x_shop_id"), 278 281 "items" => $this->build_checkout_items($cart), 279 "discount_code" => $ cart->get_applied_coupons()[0],282 "discount_code" => $discount_code, 280 283 "client_id" => $this->client_id(), 281 284 );
Note: See TracChangeset
for help on using the changeset viewer.