Changeset 3046466
- Timestamp:
- 03/06/2024 05:09:53 PM (23 months ago)
- Location:
- eupago-gateway-for-woocommerce/trunk
- Files:
-
- 6 edited
-
eupago-gateway-for-woocommerce.php (modified) (2 diffs)
-
includes/class-wc-eupago-cofidispay.php (modified) (4 diffs)
-
includes/views/eupago-admin-page.php (modified) (2 diffs)
-
languages/eupago-gateway-for-woocommerce-pt_PT.po (modified) (1 diff)
-
languages/eupago-gateway-for-woocommerce.pot (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
eupago-gateway-for-woocommerce/trunk/eupago-gateway-for-woocommerce.php
r3025844 r3046466 3 3 * Plugin Name: Eupago Gateway For Woocommerce 4 4 * Plugin URI: 5 * Description: This plugin allows customers to pay their orders with Multibanco, MB WAY, Payshop, Credit Card and CofidisPay with Eupago’s gateway. Beta Version.6 * Version: 4.1. 17 * Author: euPago5 * Description: This plugin allows customers to pay their orders with Multibanco, MB WAY, Payshop, Credit Card and CofidisPay with Eupago’s gateway. 6 * Version: 4.1.2 7 * Author: Eupago 8 8 * Author URI: https://www.eupago.pt/ 9 9 * Text Domain: eupago-gateway-for-woocommerce 10 * WC tested up to: 6. 3.210 * WC tested up to: 6.4.2 11 11 **/ 12 12 … … 26 26 * @var string 27 27 */ 28 public const VERSION = '4.1. 1';28 public const VERSION = '4.1.2'; 29 29 30 30 /** -
eupago-gateway-for-woocommerce/trunk/includes/class-wc-eupago-cofidispay.php
r3025695 r3046466 111 111 'title' => __('Only for orders above', 'eupago-gateway-for-woocommerce'), 112 112 'type' => 'number', 113 'description' => __('Enable only for orders above x € (exclusive). Leave blank (or zero) to allow for any order value.', 'eupago-gateway-for-woocommerce') . ' <br/> ' . __(' By default, CofidisPay only allows payments from 60 to 1000 € (inclusive). You can use this option to further limit this range.', 'eupago-gateway-for-woocommerce'),113 'description' => __('Enable only for orders above x € (exclusive). Leave blank (or zero) to allow for any order value.', 'eupago-gateway-for-woocommerce') . ' <br/> ' . __('The order value must fall within the limits set by Cofidis.', 'eupago-gateway-for-woocommerce'), 114 114 'default' => '60', 115 115 'custom_attributes' => [ 116 116 'min' => 60, 117 'max' => 1000,117 'max' => 2500, 118 118 ], 119 119 ], … … 121 121 'title' => __('Only for orders below', 'eupago-gateway-for-woocommerce'), 122 122 'type' => 'number', 123 'description' => __('Enable only for orders below x € (exclusive). Leave blank (or zero) to allow for any order value.', 'eupago-gateway-for-woocommerce') . ' <br/> ' . __(' By default, CofidisPay only allows payments from 60 to 1000 € (inclusive). You can use this option to further limit this range.', 'eupago-gateway-for-woocommerce'),124 'default' => ' 1000',123 'description' => __('Enable only for orders below x € (exclusive). Leave blank (or zero) to allow for any order value.', 'eupago-gateway-for-woocommerce') . ' <br/> ' . __('The order value must fall within the limits set by Cofidis.', 'eupago-gateway-for-woocommerce'), 124 'default' => '2500', 125 125 'custom_attributes' => [ 126 126 'min' => 60, 127 'max' => 1000,127 'max' => 2500, 128 128 ], 129 129 ], … … 320 320 <fieldset id="wc-<?php echo esc_attr($this->id); ?>-cofidispay-form" class="wc-cofidispay-form wc-payment-form" style="background:transparent;"> 321 321 <p class="form-row form-row-first"> 322 <label for="nif"><?php esc_html_e('Número de identificação fiscal', 'eupago-for-woocommerce'); ?></label>323 <input type="text" id="nif" autocorrect="off" spellcheck="false" name="nif" class="input-text" aria-label="<?php _e('Número de identificação fiscal', 'eupago-for-woocommerce'); ?>" aria-placeholder="" aria-invalid="false" required />322 <label for="nif"><?php esc_html_e('Número de identificação fiscal', 'eupago-for-woocommerce'); ?></label> 323 <input type="text" id="nif" autocorrect="off" spellcheck="false" name="nif" class="input-text" aria-label="<?php _e('Número de identificação fiscal', 'eupago-for-woocommerce'); ?>" aria-placeholder="" aria-invalid="false" required /> 324 324 </p> 325 325 <div class="clear"></div> … … 426 426 } 427 427 428 // CofidisPay apenas permite pagamentos entre 60 e 1000 EUR429 if ($current_price < 60 || $current_price > 1000) {428 // CofidisPay apenas permite pagamentos entre 60 e 2500 EUR 429 if ($current_price < 60 || $current_price > 2500) { 430 430 unset($available_gateways[$this->id]); 431 431 } -
eupago-gateway-for-woocommerce/trunk/includes/views/eupago-admin-page.php
r3005079 r3046466 185 185 } 186 186 } 187 187 } 188 188 $reminder_checked = ''; 189 189 $debug_checked = ''; … … 216 216 $sms_order_confirmation_checked = 'checked'; 217 217 } 218 219 ?>220 <div class="eupago-notice notice notice-success">221 <p><strong><?php esc_html_e('Settings saved.', 'eupago-gateway-for-woocommerce'); ?></strong></p>222 </div>223 <?php224 }225 218 226 219 // Generate the nonce -
eupago-gateway-for-woocommerce/trunk/languages/eupago-gateway-for-woocommerce-pt_PT.po
r2938764 r3046466 763 763 msgid "" 764 764 "This plugin allows customers to pay their orders with Multibanco, MB WAY, " 765 "Payshop and Credit Card with euPago’s gateway. Beta Version."765 "Payshop and Credit Card with Eupago’s gateway." 766 766 msgstr "" 767 767 "Este plugin permite aos clientes portugueses pagar encomendas WooCommerce " -
eupago-gateway-for-woocommerce/trunk/languages/eupago-gateway-for-woocommerce.pot
r2938764 r3046466 730 730 msgid "" 731 731 "This plugin allows customers to pay their orders with Multibanco, MB WAY, " 732 "Payshop and Credit Card with euPago’s gateway. Beta Version."732 "Payshop and Credit Card with Eupago’s gateway." 733 733 msgstr "" 734 734 -
eupago-gateway-for-woocommerce/trunk/readme.txt
r3025844 r3046466 7 7 Tested up to: 6.4.2 8 8 Requires PHP: 7.0 9 Stable tag: 4.1. 19 Stable tag: 4.1.2 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 27 27 * geração de um pedido de pagamento MB WAY. O pagamento é realizado na aplicação da MB WAY; 28 28 * geração de pedido de pagamentos via Cartão de Crédito; 29 * geração de pedido de pagamentos via CofidisPay (para valores a partir dos 60 até os 1000 euros);29 * geração de pedido de pagamentos via CofidisPay (para valores estipulados pela Cofidis); 30 30 * possibilita de fazer reembolsos directamente através da plataforma e-commerce; 31 31 * alteração automática do estado das encomendas para "Em Processamento" após o pagamento do cliente e informa o cliente final e o administrador da loja. … … 43 43 44 44 == Changelog == 45 46 = 4.1.2 (06/03/2024) = 47 * Hotfix to cofidis values changes. 45 48 46 49 = 4.1.1 (22/01/2024) =
Note: See TracChangeset
for help on using the changeset viewer.