Changeset 2753561
- Timestamp:
- 07/08/2022 06:44:07 AM (4 years ago)
- Location:
- bold-pay
- Files:
-
- 5 added
- 3 edited
-
tags/1.5.4 (added)
-
tags/1.5.4/index.php (added)
-
tags/1.5.4/readme.txt (added)
-
tags/1.5.4/src (added)
-
tags/1.5.4/src/boldpay.php (added)
-
trunk/index.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/src/boldpay.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bold-pay/trunk/index.php
r2739769 r2753561 4 4 * Plugin URI: https://boldpay.cc/login 5 5 * Description: BOLD.Pay is a cloud-based multi-channel payment access plugin for WooCommerce. 6 * Version: 1.5. 36 * Version: 1.5.4 7 7 * Author: MACROKIOSK 8 8 * Author URI: https://www.macrokiosk.com/ … … 30 30 31 31 return $methods; 32 } 33 34 //remove payment gateway description at checkout page 35 add_filter( 'woocommerce_gateway_description', 'payment_gateway_description', 25, 2 ); 36 37 function payment_gateway_description( $description, $gateway_id ) { 38 39 if( 'boldpay' === $gateway_id ) { 40 $description = null; 41 } 42 43 return $description; 32 44 } 33 45 } -
bold-pay/trunk/readme.txt
r2739769 r2753561 5 5 WooCommerce requires at least: 2.6.0 6 6 WooCommerce tested up to: 6.5.1 7 Stable tag: 1.5. 37 Stable tag: 1.5.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
bold-pay/trunk/src/boldpay.php
r2739769 r2753561 50 50 'desc_tip' => __( 'Payment gateway title that customer will see at checkout page.', 'boldpay' ), 51 51 'default' => __( 'BOLD.Pay', 'boldpay' ), 52 'custom_attributes' => array('readonly' => 'readonly'),53 ),54 'description' => array(55 'title' => __( 'Description', 'boldpay' ),56 'type' => 'textarea',57 'desc_tip' => __( 'Payment description the customer will see during the checkout process.', 'boldpay' ),58 'default' => __( 'Pay securely with Credit Card, Online Banking & e-wallet through BOLD.Pay (Malaysia Ringgit Only).', 'boldpay' ),59 'css' => 'max-width:350px;',60 52 'custom_attributes' => array('readonly' => 'readonly'), 61 53 ),
Note: See TracChangeset
for help on using the changeset viewer.