Changeset 3259545
- Timestamp:
- 03/21/2025 07:12:46 AM (13 months ago)
- File:
-
- 1 edited
-
mustangpay/trunk/src/PaymentGateway.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mustangpay/trunk/src/PaymentGateway.php
r3258937 r3259545 32 32 $this->id = Mustangpay_Custom_Payment_ID; 33 33 34 $this->method_title = __('Mustang Pay', 'mustangpay');35 34 $this->method_title = __('MustangPay', 'mustangpay'); 35 36 36 37 37 $this->method_description = __('Mustang Pay gateway payment provides functions such as cash register payment.', 'mustangpay'); … … 47 47 } 48 48 49 $this->title = 'Mustang Pay';49 $this->title = 'MustangPay'; 50 50 51 51 // Payment gateway title … … 53 53 $this->icon = apply_filters( 'mustangpay_wechat_icon', Mustangpay_Custom_Payment_URL . '/images/pay.svg' ); 54 54 55 //$this->description = $this->get_option ( 'description' ); 56 $this->description = ''; 57 //$this->instructions = ''; 55 $this->description = $this->get_option ('description' ); 56 57 58 59 //$this->description = "South Africa's trusted payment gateway offering secure card payments and EFT services."; 60 61 58 62 $this->has_fields = false; 59 63 //$this->multi_currency_enabled = in_array( 'woocommerce-multilingual/wpml-woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ), true ) && get_option( 'icl_enable_multi_currency' ) === 'yes'; … … 85 89 'section' => 'default' 86 90 ), 91 'description' => array ( 92 'title' => __("Payment gateway description",Mustangpay_Custom_Payment), 93 'type' => 'textarea', 94 'default' => __("South Africa's trusted payment gateway offering secure card payments and EFT services.",Mustangpay_Custom_Payment), 95 'desc_tip' => true, 96 'css' => 'width:400px', 97 'section' => 'default' 98 ), 87 99 /* 'title' => array ( 88 100 'title' => __('Payment gateway title',Mustangpay_Custom_Payment), … … 93 105 'section' => 'default' 94 106 ), 95 'description' => array ( 96 'title' => __('Payment gateway description',Mustangpay_Custom_Payment), 97 'type' => 'textarea', 98 'default' => '', 99 'desc_tip' => true, 100 'css' => 'width:400px', 101 'section' => 'default' 102 ),*/ 107 */ 103 108 /*'instructions' => array( 104 109 'title' => __( 'Instructions', Mustangpay_Custom_Payment ),
Note: See TracChangeset
for help on using the changeset viewer.