Plugin Directory

Changeset 3092292


Ignore:
Timestamp:
05/24/2024 07:54:30 PM (23 months ago)
Author:
weeconnectpay
Message:

Deploying version v3.7.10 from pipeline

Location:
weeconnectpay
Files:
607 added
2 edited

Legend:

Unmodified
Added
Removed
  • weeconnectpay/trunk/README.txt

    r3091816 r3092292  
    44Plugin URI: https://www.weeconnectpay.com/
    55Author: WeeConnectPay
    6 Stable Tag: 3.7.9
     6Stable Tag: 3.7.10
    77Tested Up To: 6.3.1
    88Text Domain: weeconnectpay
     
    1717WeeConnectPay for WooCommerce is a plugin for taking online payments quickly and easily, thanks to Clover technology. WeeConnectPay seamlessly integrates with your online store on WooCommerce.
    1818
    19 
    20 On the checkout page, the plugin shows an iFrame provided by Clover, which offers all payment methods available. Depending on their choice after clicking the purchase button, buyers are guided to the WeeConnectPay form where they can enter their payment information.
     19<strong>New Feature: Block-based Checkout</strong> - Our plugin now integrates with WooCommerce Checkout Blocks!
     20
     21Directly on the checkout page, buyers can enter their payment information securely using an iFrame provided by Clover, without leaving your website. Alternatively, when available, users can also pay with express checkout payment methods such as Google Pay.
    2122
    2223
     
    3940<strong>Further minimum requirements for WooCommerce:</strong>
    4041PHP 7.2 or greater
     42PHP Module INTL enabled
    4143MySQL 5.6 or greater
    4244WordPress 5.6 or greater
     
    116118
    117119== Changelog ==
     120= 3.7.10 =
     121* Updated plugin to declare compatibility with WooCommerce Checkout blocks, as well as tested up to version and minimum supported versions detectable by WooCommerce
     122
    118123= 3.7.9 =
    119124* Updated pipeline to include folders needed for the WordPress SVN
     
    345350== Upgrade Notice ==
    346351
    347 = 1.4 =
    348 Stable beta release.
    349 
    350 == Upgrade Notice ==
    351 
    352352= 3.4.0 =
    353353Action Required by Sept 1, 2023: Merchants, please update your WeeConnectPay WooCommerce gateway. This essential update aligns with Clover's IP security enhancement, ensuring uninterrupted payment processing. Your cooperation is much appreciated! 🚀
  • weeconnectpay/trunk/weeconnectpay.php

    r3091816 r3092292  
    1717 * Plugin URI:        https://weeconnectpay.com/plugin?platform=wordpress
    1818 * Description:       Integrate Clover Payments with your WooCommerce online store.
    19  * Version:           3.7.9
     19 * Version:           3.7.10
    2020 * Requires at least: 5.6
    2121 * Requires PHP:      7.2
     
    2626 * Text Domain:       weeconnectpay
    2727 * Domain Path:       /languages
     28 * WC requires at least: 3.0.4
     29 * WC tested up to: 8.9.1
    2830 */
    2931
     
    3234    die;
    3335}
    34 const WEECONNECT_VERSION = '3.7.9';
     36const WEECONNECT_VERSION = '3.7.10';
    3537
    3638define( 'WEECONNECTPAY_PLUGIN_URL', plugin_dir_url(__FILE__));
     
    8284
    8385run_weeconnectpay();
     86
     87/**
     88 * WooCommerce requires this snippet being added in the main plugin file to declare blocks-based checkout compatibility
     89 * See: https://developer.woocommerce.com/2023/11/06/faq-extending-cart-and-checkout-blocks/
     90 *
     91 * We could declare the plugin file and add it where we add all of our hooks, but for the time being we are leaving it here
     92 */
     93add_action( 'before_woocommerce_init', function() {
     94    if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) {
     95        \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'cart_checkout_blocks', __FILE__, true );
     96    }
     97} );
Note: See TracChangeset for help on using the changeset viewer.