Plugin Directory

Changeset 3201248


Ignore:
Timestamp:
12/03/2024 12:27:01 AM (13 months ago)
Author:
Hiroaki Miyashita
Message:

Version 0.8

Location:
wc-paypay-gateway/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wc-paypay-gateway/trunk/readme.txt

    r2661634 r3201248  
    44Tags: woocommerce, checkout, paypay, payments, ecommerce
    55Requires at least: 5.0
    6 Tested up to: 5.8.3
    7 Stable tag: 0.7
     6Tested up to: 6.7.1
     7Stable tag: 0.8
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    4646== Changelog ==
    4747
     48= 0.8 =
     49* Support for High-Performance Order Storage.
     50
    4851= 0.7 =
    4952* Library update.
  • wc-paypay-gateway/trunk/wc-paypay-gateway.php

    r2661634 r3201248  
    66 * Author: Hiroaki Miyashita
    77 * Author URI: https://www.wpmarket.jp/
    8  * Version: 0.7
     8 * Version: 0.8
    99 * Requires at least: 4.4
    10  * Tested up to: 5.8.3
     10 * Tested up to: 6.7.1
    1111 * WC requires at least: 3.0
    12  * WC tested up to: 6.1.1
     12 * WC tested up to: 9.4.2
    1313 * Text Domain: wc-paypay-gateway
    1414 * Domain Path: /
     
    2727use PayPay\OpenPaymentAPI\Models\RefundPaymentPayload;
    2828use PayPay\OpenPaymentAPI\Models\RevertAuthPayload;
     29
     30add_action( 'before_woocommerce_init', function() {
     31    if ( class_exists( \Automattic\WooCommerce\Utilities\FeaturesUtil::class ) ) {
     32        \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );
     33    }
     34} );
    2935
    3036function wc_paypay_gateway_missing_admin_notices() {
     
    284290            function wc_paypay_gateway_woocommerce_available_payment_gateways( $available_gateways ) {
    285291                if ( is_checkout() && is_wc_endpoint_url( 'order-pay' ) ) :
    286                     unset( $available_gateways['paypay'] );
     292                    //unset( $available_gateways['paypay'] );
    287293                endif;
    288294               
Note: See TracChangeset for help on using the changeset viewer.