Changeset 3262651
- Timestamp:
- 03/27/2025 09:10:06 AM (12 months ago)
- Location:
- sepay-gateway/trunk
- Files:
-
- 4 edited
-
includes/class-wc-gateway-sepay.php (modified) (1 diff)
-
includes/class-wc-sepay-api.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
-
sepay-gateway.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sepay-gateway/trunk/includes/class-wc-gateway-sepay.php
r3253700 r3262651 34 34 $this->supports = ['products']; 35 35 36 $this->init_form_fields(); 36 if (is_admin()) { 37 $this->init_form_fields(); 38 } 37 39 $this->init_settings(); 38 40 -
sepay-gateway/trunk/includes/class-wc-sepay-api.php
r3257439 r3262651 290 290 { 291 291 $api_key = wp_generate_password(32, false); 292 $webhook_url = home_url('/wp-json/sepay-gateway/v2/add-payment'); 292 293 $api_path = 'sepay-gateway/v2/add-payment'; 294 $webhook_url = get_option('permalink_structure') ? '/wp-json/' . $api_path : '/?rest_route=/' . $api_path; 295 $webhook_url = home_url($webhook_url); 293 296 294 297 if ($webhook_id) { … … 303 306 'is_verify_payment' => 1, 304 307 'skip_if_no_code' => 1, 308 'only_va' => 0, 305 309 'active' => 1, 306 310 ]); … … 316 320 'is_verify_payment' => 1, 317 321 'skip_if_no_code' => 1, 322 'only_va' => 0, 318 323 'active' => 1, 319 324 ]); -
sepay-gateway/trunk/readme.txt
r3257439 r3262651 4 4 - Tags: woocommerce, payment gateway, vietqr, ngan hang, thanh toan 5 5 - Requires WooCommerce at least: 2.1 6 - Stable Tag: 1.1. 27 - Version: 1.1. 26 - Stable Tag: 1.1.3 7 - Version: 1.1.3 8 8 - Tested up to: 6.6 9 9 - Requires at least: 5.6 -
sepay-gateway/trunk/sepay-gateway.php
r3257439 r3262651 6 6 * Author: SePay Team 7 7 * Author URI: https://sepay.vn/ 8 * Version: 1.1. 28 * Version: 1.1.3 9 9 * Requires Plugins: woocommerce 10 10 * Text Domain: sepay-gateway
Note: See TracChangeset
for help on using the changeset viewer.