Changeset 2958482
- Timestamp:
- 08/25/2023 08:59:42 PM (3 years ago)
- Location:
- woocom-securepay-payment-gateway/tags/1.8
- Files:
-
- 1 added
- 2 edited
-
readme.txt (modified) (4 diffs)
-
woocom_securepay.css (added)
-
woocom_securepay_payment_gateway.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocom-securepay-payment-gateway/tags/1.8/readme.txt
r2748190 r2958482 4 4 Tags: woocommerce, payment, gateway, securepay, checkout, securepay payment, woocommerce securepay 5 5 Requires at least: 5.0 6 Tested up to: 6. 06 Tested up to: 6.3 7 7 Stable tag: 1.8 8 8 Requires PHP: 7.1 9 WC tested up to: 6.6.19 WC tested up to: 8.0.2 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 20 20 This plugin doesn't support FraudGuard settings. If FraudGuard setting is enabled on your SecurePay account to minimize the fraudulent transactions or you need an option for Pre Authorization Payments, please [use this plugin](https://hemthapa.com/product/woocommerce-securepay-payment-gateway-plugin/?ref=wp) instead. 21 21 22 This plugin is tested up to WooCommerce Version 6.6.122 This plugin is tested up to WooCommerce Version 8.0.2 23 23 24 24 == Installation == … … 46 46 * Your WooCommerce store should have a valid SSL certificate to secure the overall payment process. 47 47 = WooCommerce Version Support?== 48 This plugin is tested up to WooCommerce version 6.6.1 48 This plugin is tested up to WooCommerce version 8.0.2 49 = Where can I find API Transaction Password? 50 API Transaction Password and your SecurePay user account password are different. 51 You can find the API transaction password from SecurePay portal under Manage > API Transaction Password menu. 49 52 = I've got 'Invalid Merchant ID' error on Live mode = 50 53 Possible reasons: … … 76 79 77 80 == Upgrade Notice == 78 Support for WooCommerce version 6.6.1is added.81 Support for WooCommerce version 8.0.2 is added. -
woocom-securepay-payment-gateway/tags/1.8/woocom_securepay_payment_gateway.php
r2748190 r2958482 7 7 Version: 1.8 8 8 Author URI: https://hemthapa.com/product/woocommerce-securepay-payment-gateway-plugin/ 9 WC tested up to: 6.6.19 WC tested up to: 8.0.2 10 10 */ 11 11 12 12 add_action('plugins_loaded', 'woocommerce_securepay_payment_gateway_init'); 13 add_action('wp_enqueue_scripts', 'securepay_scripts_enqueue'); 14 15 function securepay_scripts_enqueue(){ 16 wp_enqueue_style( 'securepay-style', plugins_url( 'woocom_securepay.css', __FILE__ ) ); 17 } 13 18 14 19 function woocommerce_securepay_payment_gateway_init(){ … … 101 106 ), 102 107 'sPassword' => array( 103 'title' => __(' SecurePayPassword', 'woocommerce'),108 'title' => __('API Transaction Password', 'woocommerce'), 104 109 'type' => 'password', 105 110 'placeholder' => '********', 106 'description' => __(' Enter SecurePay password', 'woocommerce'),111 'description' => __('API Transaction Password and your SecurePay user account password are different.<br>You can find the API transaction password from SecurePay portal under <u>Manage</u> > <u>API Transaction Password</u> menu.', 'woocommerce'), 107 112 'default' => '' 108 113 ),
Note: See TracChangeset
for help on using the changeset viewer.