Plugin Directory

Changeset 3029964


Ignore:
Timestamp:
02/01/2024 10:16:11 AM (2 years ago)
Author:
patsatech
Message:

Updating the readme.txt

Location:
sagepay-direct-gateway-for-woocommerce/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sagepay-direct-gateway-for-woocommerce/trunk/readme.txt

    r3029959 r3029964  
    1 === SagePay Direct Gateway for WooCommerce ===
     1=== PatSaTECH's Opayo Direct Gateway for WooCommerce ===
    22Contributors: patsatech
    3 Tags: ecommerce, payment gateway, wordpress, woocommerce,sagepay direct,sagepay go
     3Tags: ecommerce, payment gateway, wordpress, woocommerce,opayo direct,opayo go
    44Requires at least: 6.0
    55Tested up to: 6.4.3
     
    77License: GPLv2 or later
    88
    9 SagePay Direct Gateway for accepting payments on your WooCommerce Store.
     9PatSaTECH's Opayo Direct Gateway for accepting payments on your WooCommerce Store.
    1010
    1111== Description ==
    1212
    13 SagePay Direct integration is essentially a white-label payment solution, giving you complete control over the way you process card payments.
     13Opayo Direct integration is essentially a white-label payment solution, giving you complete control over the way you process card payments.
    1414
    15 This Plugin allows you to accept SagePay Payments through Sage Pay Account and when integrated with your e-commerce website, your shopper never moves from your URL.
     15This 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.
    1616
    1717NOTE: You need to maintain a PCI DSS certification and SSL Certificate on your site.
  • sagepay-direct-gateway-for-woocommerce/trunk/sagepaydirect.php

    r3029959 r3029964  
    33 * Plugin Name: PatSaTECH's Opayo Direct Gateway for WooCommerce
    44 * Plugin URI: http://www.patsatech.com/
    5  * Description: WooCommerce Plugin for accepting payment through SagePay Direct Gateway.
     5 * Description: WooCommerce Plugin for accepting payment through Opayo Direct Gateway.
    66 * Version: 1.3.1
    77 * Author: PatSaTECH
     
    1616 * Domain Path: /lang/
    1717 *
    18  * @package SagePay Direct Gateway for WooCommerce
     18 * @package Opayo Direct Gateway for WooCommerce
    1919 * @author PatSaTECH
    2020 */
     
    3737
    3838            $this->id           = 'sagepaydirect';
    39             $this->method_title = __('SagePay Direct', 'woo-sagepay-patsatech');
     39            $this->method_title = __('Opayo Direct', 'woo-sagepay-patsatech');
    4040            $this->icon         = apply_filters('woocommerce_sagepaydirect_icon', '');
    4141            $this->has_fields   = true;
     
    159159        {
    160160            ?>
    161               <h3><?php _e('SagePay Direct', 'woo-sagepay-patsatech'); ?></h3>
    162               <p><?php _e('SagePay Direct 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>
    163163              <table class="form-table">
    164164              <?php
     
    179179                'title' => __('Enable/Disable', 'woo-sagepay-patsatech'),
    180180                'type' => 'checkbox',
    181                 'label' => __('Enable SagePay Direct', 'woo-sagepay-patsatech'),
     181                'label' => __('Enable Opayo Direct', 'woo-sagepay-patsatech'),
    182182                'default' => 'yes',
    183183                'desc_tip'    => true
     
    187187                'type' => 'text',
    188188                'description' => __('This is the title displayed to the user during checkout.', 'woo-sagepay-patsatech'),
    189                 'default' => __('SagePay Direct', 'woo-sagepay-patsatech'),
     189                'default' => __('Opayo Direct', 'woo-sagepay-patsatech'),
    190190                'desc_tip'    => true
    191191              ),
     
    194194                'type' => 'textarea',
    195195                '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'),
    197197                'desc_tip'    => true
    198198              ),
     
    200200                'title' => __('Vendor Name', 'woo-sagepay-patsatech'),
    201201                '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'),
    203203                'default' => '',
    204204                'desc_tip'    => true
     
    583583
    584584                if ($resp['Status'] == "OK" || $resp['Status'] == "REGISTERED" || $resp['Status'] == "AUTHENTICATED") {
    585                     $order->add_order_note(__('SagePay Direct Payment Completed.', 'woo-sagepay-patsatech'));
     585                    $order->add_order_note(__('Opayo Direct Payment Completed.', 'woo-sagepay-patsatech'));
    586586                    $order->payment_complete();
    587587                    $redirect_url = $this->get_return_url($order);
     
    731731
    732732                    if ($resp['Status'] == "OK" || $resp['Status'] == "REGISTERED" || $resp['Status'] == "AUTHENTICATED") {
    733                         $order->add_order_note(__('SagePay Direct Payment Completed.', 'woo-sagepay-patsatech'));
     733                        $order->add_order_note(__('Opayo Direct Payment Completed.', 'woo-sagepay-patsatech'));
    734734                        $order->payment_complete();
    735735                        $redirect_url = $this->get_return_url($order);
Note: See TracChangeset for help on using the changeset viewer.