Changeset 3201248
- Timestamp:
- 12/03/2024 12:27:01 AM (13 months ago)
- Location:
- wc-paypay-gateway/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wc-paypay-gateway.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wc-paypay-gateway/trunk/readme.txt
r2661634 r3201248 4 4 Tags: woocommerce, checkout, paypay, payments, ecommerce 5 5 Requires at least: 5.0 6 Tested up to: 5.8.37 Stable tag: 0. 76 Tested up to: 6.7.1 7 Stable tag: 0.8 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 46 46 == Changelog == 47 47 48 = 0.8 = 49 * Support for High-Performance Order Storage. 50 48 51 = 0.7 = 49 52 * Library update. -
wc-paypay-gateway/trunk/wc-paypay-gateway.php
r2661634 r3201248 6 6 * Author: Hiroaki Miyashita 7 7 * Author URI: https://www.wpmarket.jp/ 8 * Version: 0. 78 * Version: 0.8 9 9 * Requires at least: 4.4 10 * Tested up to: 5.8.310 * Tested up to: 6.7.1 11 11 * WC requires at least: 3.0 12 * WC tested up to: 6.1.112 * WC tested up to: 9.4.2 13 13 * Text Domain: wc-paypay-gateway 14 14 * Domain Path: / … … 27 27 use PayPay\OpenPaymentAPI\Models\RefundPaymentPayload; 28 28 use PayPay\OpenPaymentAPI\Models\RevertAuthPayload; 29 30 add_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 } ); 29 35 30 36 function wc_paypay_gateway_missing_admin_notices() { … … 284 290 function wc_paypay_gateway_woocommerce_available_payment_gateways( $available_gateways ) { 285 291 if ( is_checkout() && is_wc_endpoint_url( 'order-pay' ) ) : 286 unset( $available_gateways['paypay'] );292 //unset( $available_gateways['paypay'] ); 287 293 endif; 288 294
Note: See TracChangeset
for help on using the changeset viewer.