Changeset 3029964
- Timestamp:
- 02/01/2024 10:16:11 AM (2 years ago)
- Location:
- sagepay-direct-gateway-for-woocommerce/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
sagepaydirect.php (modified) (10 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sagepay-direct-gateway-for-woocommerce/trunk/readme.txt
r3029959 r3029964 1 === SagePayDirect Gateway for WooCommerce ===1 === PatSaTECH's Opayo Direct Gateway for WooCommerce === 2 2 Contributors: patsatech 3 Tags: ecommerce, payment gateway, wordpress, woocommerce, sagepay direct,sagepaygo3 Tags: ecommerce, payment gateway, wordpress, woocommerce,opayo direct,opayo go 4 4 Requires at least: 6.0 5 5 Tested up to: 6.4.3 … … 7 7 License: GPLv2 or later 8 8 9 SagePayDirect Gateway for accepting payments on your WooCommerce Store.9 PatSaTECH's Opayo Direct Gateway for accepting payments on your WooCommerce Store. 10 10 11 11 == Description == 12 12 13 SagePayDirect integration is essentially a white-label payment solution, giving you complete control over the way you process card payments.13 Opayo Direct integration is essentially a white-label payment solution, giving you complete control over the way you process card payments. 14 14 15 This Plugin allows you to accept SagePay Payments through Sage PayAccount and when integrated with your e-commerce website, your shopper never moves from your URL.15 This Plugin allows you to accept Opayo Payments through Opayo Account and when integrated with your e-commerce website, your shopper never moves from your URL. 16 16 17 17 NOTE: You need to maintain a PCI DSS certification and SSL Certificate on your site. -
sagepay-direct-gateway-for-woocommerce/trunk/sagepaydirect.php
r3029959 r3029964 3 3 * Plugin Name: PatSaTECH's Opayo Direct Gateway for WooCommerce 4 4 * Plugin URI: http://www.patsatech.com/ 5 * Description: WooCommerce Plugin for accepting payment through SagePayDirect Gateway.5 * Description: WooCommerce Plugin for accepting payment through Opayo Direct Gateway. 6 6 * Version: 1.3.1 7 7 * Author: PatSaTECH … … 16 16 * Domain Path: /lang/ 17 17 * 18 * @package SagePayDirect Gateway for WooCommerce18 * @package Opayo Direct Gateway for WooCommerce 19 19 * @author PatSaTECH 20 20 */ … … 37 37 38 38 $this->id = 'sagepaydirect'; 39 $this->method_title = __(' SagePayDirect', 'woo-sagepay-patsatech');39 $this->method_title = __('Opayo Direct', 'woo-sagepay-patsatech'); 40 40 $this->icon = apply_filters('woocommerce_sagepaydirect_icon', ''); 41 41 $this->has_fields = true; … … 159 159 { 160 160 ?> 161 <h3><?php _e(' SagePayDirect', 'woo-sagepay-patsatech'); ?></h3>162 <p><?php _e(' SagePayDirect works by processing Credit Cards on site. So users do not leave your site to enter their payment information.', 'woo-sagepay-patsatech'); ?></p>161 <h3><?php _e('Opayo Direct', 'woo-sagepay-patsatech'); ?></h3> 162 <p><?php _e('Opayo Direct works by processing Credit Cards on site. So users do not leave your site to enter their payment information.', 'woo-sagepay-patsatech'); ?></p> 163 163 <table class="form-table"> 164 164 <?php … … 179 179 'title' => __('Enable/Disable', 'woo-sagepay-patsatech'), 180 180 'type' => 'checkbox', 181 'label' => __('Enable SagePayDirect', 'woo-sagepay-patsatech'),181 'label' => __('Enable Opayo Direct', 'woo-sagepay-patsatech'), 182 182 'default' => 'yes', 183 183 'desc_tip' => true … … 187 187 'type' => 'text', 188 188 'description' => __('This is the title displayed to the user during checkout.', 'woo-sagepay-patsatech'), 189 'default' => __(' SagePayDirect', 'woo-sagepay-patsatech'),189 'default' => __('Opayo Direct', 'woo-sagepay-patsatech'), 190 190 'desc_tip' => true 191 191 ), … … 194 194 'type' => 'textarea', 195 195 'description' => __('This is the description which the user sees during checkout.', 'woo-sagepay-patsatech'), 196 'default' => __("Payment via SagePay, Please enter your credit or debit card below.", 'woo-sagepay-patsatech'),196 'default' => __("Payment via Opayo, Please enter your credit or debit card below.", 'woo-sagepay-patsatech'), 197 197 'desc_tip' => true 198 198 ), … … 200 200 'title' => __('Vendor Name', 'woo-sagepay-patsatech'), 201 201 'type' => 'text', 202 'description' => __('Please enter your vendor name provided by SagePay.', 'woo-sagepay-patsatech'),202 'description' => __('Please enter your vendor name provided by Opayo.', 'woo-sagepay-patsatech'), 203 203 'default' => '', 204 204 'desc_tip' => true … … 583 583 584 584 if ($resp['Status'] == "OK" || $resp['Status'] == "REGISTERED" || $resp['Status'] == "AUTHENTICATED") { 585 $order->add_order_note(__(' SagePayDirect Payment Completed.', 'woo-sagepay-patsatech'));585 $order->add_order_note(__('Opayo Direct Payment Completed.', 'woo-sagepay-patsatech')); 586 586 $order->payment_complete(); 587 587 $redirect_url = $this->get_return_url($order); … … 731 731 732 732 if ($resp['Status'] == "OK" || $resp['Status'] == "REGISTERED" || $resp['Status'] == "AUTHENTICATED") { 733 $order->add_order_note(__(' SagePayDirect Payment Completed.', 'woo-sagepay-patsatech'));733 $order->add_order_note(__('Opayo Direct Payment Completed.', 'woo-sagepay-patsatech')); 734 734 $order->payment_complete(); 735 735 $redirect_url = $this->get_return_url($order);
Note: See TracChangeset
for help on using the changeset viewer.