Plugin Directory

Changeset 3046466


Ignore:
Timestamp:
03/06/2024 05:09:53 PM (23 months ago)
Author:
eupagoip
Message:

v4.1.2

Location:
eupago-gateway-for-woocommerce/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • eupago-gateway-for-woocommerce/trunk/eupago-gateway-for-woocommerce.php

    r3025844 r3046466  
    33* Plugin Name: Eupago Gateway For Woocommerce
    44* 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.1
    7 * Author: euPago
     5* 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
    88* Author URI: https://www.eupago.pt/
    99* Text Domain: eupago-gateway-for-woocommerce
    10 * WC tested up to: 6.3.2
     10* WC tested up to: 6.4.2
    1111**/
    1212
     
    2626         * @var string
    2727         */
    28         public const VERSION = '4.1.1';
     28        public const VERSION = '4.1.2';
    2929
    3030        /**
  • eupago-gateway-for-woocommerce/trunk/includes/class-wc-eupago-cofidispay.php

    r3025695 r3046466  
    111111                'title' => __('Only for orders above', 'eupago-gateway-for-woocommerce'),
    112112                'type' => 'number',
    113                 'description' => __('Enable only for orders above x &euro; (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 &euro; (inclusive). You can use this option to further limit this range.', 'eupago-gateway-for-woocommerce'),
     113                'description' => __('Enable only for orders above x &euro; (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'),
    114114                'default' => '60',
    115115                'custom_attributes' => [
    116116                  'min' => 60,
    117                   'max' => 1000,
     117                  'max' => 2500,
    118118                ],
    119119              ],
     
    121121                'title' => __('Only for orders below', 'eupago-gateway-for-woocommerce'),
    122122                'type' => 'number',
    123                 'description' => __('Enable only for orders below x &euro; (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 &euro; (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 &euro; (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',
    125125                'custom_attributes' => [
    126126                  'min' => 60,
    127                   'max' => 1000,
     127                  'max' => 2500,
    128128                ],
    129129              ],
     
    320320      <fieldset id="wc-<?php echo esc_attr($this->id); ?>-cofidispay-form" class="wc-cofidispay-form wc-payment-form" style="background:transparent;">
    321321        <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 />
    324324        </p>
    325325        <div class="clear"></div>
     
    426426                }
    427427
    428                 // CofidisPay apenas permite pagamentos entre 60 e 1000 EUR
    429                 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) {
    430430                    unset($available_gateways[$this->id]);
    431431                }
  • eupago-gateway-for-woocommerce/trunk/includes/views/eupago-admin-page.php

    r3005079 r3046466  
    185185            }
    186186        }
    187 
     187    }
    188188        $reminder_checked = '';
    189189        $debug_checked = '';
     
    216216            $sms_order_confirmation_checked = 'checked';
    217217        }
    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         <?php
    224     }
    225218
    226219    // Generate the nonce
  • eupago-gateway-for-woocommerce/trunk/languages/eupago-gateway-for-woocommerce-pt_PT.po

    r2938764 r3046466  
    763763msgid ""
    764764"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."
    766766msgstr ""
    767767"Este plugin permite aos clientes portugueses pagar encomendas WooCommerce "
  • eupago-gateway-for-woocommerce/trunk/languages/eupago-gateway-for-woocommerce.pot

    r2938764 r3046466  
    730730msgid ""
    731731"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."
    733733msgstr ""
    734734
  • eupago-gateway-for-woocommerce/trunk/readme.txt

    r3025844 r3046466  
    77Tested up to: 6.4.2
    88Requires PHP: 7.0
    9 Stable tag: 4.1.1
     9Stable tag: 4.1.2
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2727* geração de um pedido de pagamento MB WAY. O pagamento é realizado na aplicação da MB WAY;
    2828* 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);
    3030* possibilita de fazer reembolsos directamente através da plataforma e-commerce;
    3131* 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.
     
    4343
    4444== Changelog ==
     45
     46= 4.1.2 (06/03/2024) =
     47* Hotfix to cofidis values changes.
    4548
    4649= 4.1.1 (22/01/2024) =
Note: See TracChangeset for help on using the changeset viewer.