Plugin Directory

Changeset 2958482


Ignore:
Timestamp:
08/25/2023 08:59:42 PM (3 years ago)
Author:
hemthapa
Message:

Credit card number field - spin arrow disabled, WC support version is updated upto 8.0.2

Location:
woocom-securepay-payment-gateway/tags/1.8
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • woocom-securepay-payment-gateway/tags/1.8/readme.txt

    r2748190 r2958482  
    44Tags: woocommerce, payment, gateway, securepay, checkout, securepay payment, woocommerce securepay
    55Requires at least: 5.0
    6 Tested up to: 6.0
     6Tested up to: 6.3
    77Stable tag: 1.8
    88Requires PHP: 7.1
    9 WC tested up to: 6.6.1
     9WC tested up to: 8.0.2
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2020This 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.
    2121
    22 This plugin is tested up to WooCommerce Version 6.6.1
     22This plugin is tested up to WooCommerce Version 8.0.2
    2323
    2424== Installation ==
     
    4646* Your WooCommerce store should have a valid SSL certificate to secure the overall payment process.
    4747= WooCommerce Version Support?==
    48 This plugin is tested up to WooCommerce version 6.6.1
     48This plugin is tested up to WooCommerce version 8.0.2
     49= Where can I find API Transaction Password?
     50API Transaction Password and your SecurePay user account password are different.
     51You can find the API transaction password from SecurePay portal under Manage > API Transaction Password menu.
    4952= I've got 'Invalid Merchant ID' error on Live mode =
    5053Possible reasons:
     
    7679
    7780== Upgrade Notice ==
    78 Support for WooCommerce version 6.6.1 is added.
     81Support for WooCommerce version 8.0.2 is added.
  • woocom-securepay-payment-gateway/tags/1.8/woocom_securepay_payment_gateway.php

    r2748190 r2958482  
    77Version: 1.8
    88Author URI: https://hemthapa.com/product/woocommerce-securepay-payment-gateway-plugin/
    9 WC tested up to: 6.6.1
     9WC tested up to: 8.0.2
    1010*/
    1111
    1212add_action('plugins_loaded', 'woocommerce_securepay_payment_gateway_init');
     13add_action('wp_enqueue_scripts', 'securepay_scripts_enqueue');
     14
     15function securepay_scripts_enqueue(){
     16    wp_enqueue_style( 'securepay-style', plugins_url( 'woocom_securepay.css', __FILE__ ) );
     17}
    1318
    1419function woocommerce_securepay_payment_gateway_init(){
     
    101106                ),
    102107                'sPassword' => array(
    103                     'title' => __('SecurePay Password', 'woocommerce'),
     108                    'title' => __('API Transaction Password', 'woocommerce'),
    104109                    'type' => 'password',
    105110                    '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'),
    107112                    'default' => ''
    108113                ),
Note: See TracChangeset for help on using the changeset viewer.