Plugin Directory

Changeset 3288528


Ignore:
Timestamp:
05/06/2025 02:59:51 PM (11 months ago)
Author:
apiki
Message:

Nova versão disponivel para download 1.3.8

Location:
wc-koin-official/trunk
Files:
23 edited

Legend:

Unmodified
Added
Removed
  • wc-koin-official/trunk/app/Controllers/Checkout/CheckoutFieldManager.php

    r3279008 r3288528  
    99        if (get_option('wc_koin_settings_override_number_fields') !== 'yes') {
    1010            add_filter('woocommerce_checkout_fields', [$this, 'add_number_field']);
    11             add_filter('woocommerce_checkout_fields', [$this, 'add_custom_checkout_fields']);
    1211        }
    1312
    1413        if (get_option('wc_koin_settings_override_document_fields') !== 'yes') {
     14            add_filter('woocommerce_checkout_fields', [$this, 'add_custom_checkout_fields']);
     15            add_filter('woocommerce_get_country_locale', [$this, 'manage_country_locale']);
    1516            add_filter('woocommerce_form_field', [$this, 'remove_optional']);
    16             add_filter('woocommerce_get_country_locale', [$this, 'manage_country_locale']);
    1717        }
     18
    1819        add_action('woocommerce_checkout_update_order_meta', [$this, 'save_custom_checkout_fields']);
    1920    }
  • wc-koin-official/trunk/app/Controllers/Gateways/Gateway.php

    r3279008 r3288528  
    611611
    612612        $address  = [];
    613 
    614613        if ($type === 'shipping' && $this->validate_address_fields($shipping)) {
    615614            $address = $shipping;
     
    681680        $person_type = $this->get_person($wc_order);
    682681
    683 
    684682        $name     = "$billing_first_name $billing_last_name";
    685683        $mail     = $wc_order->get_billing_email();
     
    738736                case '2':
    739737                    $person = 'cnpj';
    740                     $document = preg_replace('/[^0-9]/', '', $order->get_meta($document_fields_by_country[$country]['cnpj'] ?? ''));
     738                    $document = preg_replace('/\D/', '', $order->get_meta($document_fields_by_country[$country]['cnpj'] ?? ''));
    741739                    break;
    742740                case '1':
    743741                    $person = 'cpf';
    744                     $document = preg_replace('/[^0-9]/', '', $order->get_meta($document_fields_by_country[$country]['cpf'] ?? ''));
     742                    $document = preg_replace('/\D/', '', $order->get_meta($document_fields_by_country[$country]['cpf'] ?? ''));
    745743                    break;
    746744                default:
  • wc-koin-official/trunk/app/Controllers/Menus/Installments.php

    r3279008 r3288528  
    5151                'title' => __('Installment Display', 'wc-koin-official'),
    5252                'type' => 'text',
    53                 'desc' => __('Define how the installments will be displayed on checkout. Leave the field blank for default display.<br> You can use the following variables: {installments}, {value}, {total_value}, {interest}', 'wc-koin-official'),
     53                'desc' => __('Define how the installments will be displayed on checkout. Leave the field blank for default display.', 'wc-koin-official'),
    5454                'id'   => 'wc_koin_installment_display'
    5555            ],
  • wc-koin-official/trunk/app/Controllers/Render/CreditCheckout.php

    r3279008 r3288528  
    4444        if ($hasOverrideRules) {
    4545            $overrideRuleInstallments = [];
    46            
     46
    4747            foreach ($rules as $rule) {
    4848                if ($rule->overrideRules) {
     
    5151                }
    5252            }
    53            
     53
    5454            return $overrideRuleInstallments;
    5555        } else {
     
    5858                $installments = array_replace_recursive($installments, $ruleInstallments);
    5959            }
    60            
     60
    6161            return $installments;
    6262        }
     
    141141        $currency = html_entity_decode(get_woocommerce_currency_symbol(), ENT_QUOTES, 'UTF-8');
    142142
    143         if ($rule && isset($rule->installmentDisplay) && !empty($rule->installmentDisplay)) {
    144             $customFormat = $rule->installmentDisplay;
    145 
    146             $replacements = [
    147                 '{installments}' => $installment,
    148                 '{value}' => $currency . $value,
    149                 '{total_value}' => $currency . $total,
    150                 '{interest}' => $rateText,
    151             ];
    152 
    153             return str_replace(array_keys($replacements), array_values($replacements), $customFormat);
    154         }
    155 
    156143        $format = $gateway->get_option('installments_show_mode');
    157144        switch ($format) {
     
    168155                $text = "$installment x $currency" . $value;
    169156                break;
     157        }
     158
     159        if ($rule && isset($rule->installmentDisplay) && !empty($rule->installmentDisplay)) {
     160            $customFormatText = $rule->installmentDisplay;
     161            $text = $customFormatText . ' - ' . $text;
    170162        }
    171163
  • wc-koin-official/trunk/app/Helpers/Config.php

    r3279008 r3288528  
    9595    public static function __version()
    9696    {
    97         return '1.3.7';
     97        return '1.3.8';
    9898    }
    9999
  • wc-koin-official/trunk/composer.json

    r3279008 r3288528  
    33    "description": "Koin Official Payments for Woocommerce",
    44    "type": "wordpress-plugin",
    5     "version": "1.3.7",
     5    "version": "1.3.8",
    66    "license": "GPL-3.0",
    77    "require": {
  • wc-koin-official/trunk/languages/wc-koin-official-es_AR.po

    r3279008 r3288528  
    13651365msgstr "Habilite esta opción si su tienda ya tiene un campo de documento existente en el proceso de pago. Cuando está habilitado, el plugin utilizará su campo de documento existente en lugar de crear sus propios campos de documento específicos por país."
    13661366
    1367 #: app/Controllers/Menus/Settings.php:135
     1367#: app/Controllers/Menus/Settings.php:128
    13681368msgid "Custom document field"
    13691369msgstr "Campo de documento personalizado"
    13701370
    1371 #: app/Controllers/Menus/Settings.php:138
     1371#: app/Controllers/Menus/Settings.php:131
    13721372msgid "Enter the meta_key of your existing document field in checkout that should be used by Koin. This field is required when 'Override document fields' is enabled."
    13731373msgstr "Ingrese la meta_key de su campo de documento existente en el proceso de pago que debe ser utilizado por Koin. Este campo es obligatorio cuando 'Sobrescribir campos de documento' está habilitado."
     
    13781378
    13791379#: app/Controllers/Menus/Installments.php:53
    1380 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display.<br> You can use the following variables: {installments}, {value}, {total_value}, {interest}"
    1381 msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada.<br> Puede usar las siguientes variables: {installments}, {value}, {total_value}, {interest}"
    1382 
    1383 #: app/Controllers/Menus/Settings.php:128
     1380msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display."
     1381msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada."
     1382
     1383#: app/Controllers/Menus/Settings.php:135
    13841384msgid "Use existing street number field"
    1385 msgstr "Usar campo de número de calle existente"
    1386 
    1387 #: app/Controllers/Menus/Settings.php:131
     1385msgstr "Utilizá el campo existente del número de calle."
     1386
     1387#: app/Controllers/Menus/Settings.php:138
    13881388msgid "Enable this option if your checkout already includes a street number field. When enabled, the plugin will use your existing field instead of adding a new one."
    13891389msgstr "Habilite esta opción si su proceso de pago ya incluye un campo de número de calle. Cuando está habilitado, el plugin utilizará su campo existente en lugar de agregar uno nuevo."
  • wc-koin-official/trunk/languages/wc-koin-official-es_CL.po

    r3279008 r3288528  
    13631363msgstr "Habilite esta opción si su tienda ya tiene un campo de documento existente en el proceso de pago. Cuando está habilitado, el plugin utilizará su campo de documento existente en lugar de crear sus propios campos de documento específicos por país."
    13641364
    1365 #: app/Controllers/Menus/Settings.php:135
     1365#: app/Controllers/Menus/Settings.php:128
    13661366msgid "Custom document field"
    13671367msgstr "Campo de documento personalizado"
    13681368
    1369 #: app/Controllers/Menus/Settings.php:138
     1369#: app/Controllers/Menus/Settings.php:131
    13701370msgid "Enter the meta_key of your existing document field in checkout that should be used by Koin. This field is required when 'Override document fields' is enabled."
    13711371msgstr "Ingrese la meta_key de su campo de documento existente en el proceso de pago que debe ser utilizado por Koin. Este campo es obligatorio cuando 'Sobrescribir campos de documento' está habilitado."
     
    13801380
    13811381#: app/Controllers/Menus/Installments.php:53
    1382 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display.<br> You can use the following variables: {installments}, {value}, {total_value}, {interest}"
    1383 msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada.<br> Puede usar las siguientes variables: {installments}, {value}, {total_value}, {interest}"
    1384 
    1385 #: app/Controllers/Menus/Settings.php:128
     1382msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display."
     1383msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada."
     1384
     1385#: app/Controllers/Menus/Settings.php:135
    13861386msgid "Use existing street number field"
    1387 msgstr "Usar campo de número de calle existente"
    1388 
    1389 #: app/Controllers/Menus/Settings.php:131
     1387msgstr "Utilizá el campo existente del número de calle."
     1388
     1389#: app/Controllers/Menus/Settings.php:138
    13901390msgid "Enable this option if your checkout already includes a street number field. When enabled, the plugin will use your existing field instead of adding a new one."
    13911391msgstr "Habilite esta opción si su checkout ya incluye un campo de número de calle. Cuando está habilitado, el plugin utilizará su campo existente en lugar de agregar uno nuevo."
  • wc-koin-official/trunk/languages/wc-koin-official-es_CO.po

    r3279008 r3288528  
    13671367msgstr "Habilite esta opción si su tienda ya tiene un campo de documento existente en el proceso de pago. Cuando está habilitado, el plugin utilizará su campo de documento existente en lugar de crear sus propios campos de documento específicos por país."
    13681368
    1369 #: app/Controllers/Menus/Settings.php:135
     1369#: app/Controllers/Menus/Settings.php:128
    13701370msgid "Custom document field"
    13711371msgstr "Campo de documento personalizado"
    13721372
    1373 #: app/Controllers/Menus/Settings.php:138
     1373#: app/Controllers/Menus/Settings.php:131
    13741374msgid "Enter the meta_key of your existing document field in checkout that should be used by Koin. This field is required when 'Override document fields' is enabled."
    13751375msgstr "Ingrese la meta_key de su campo de documento existente en el proceso de pago que debe ser utilizado por Koin. Este campo es obligatorio cuando 'Sobrescribir campos de documento' está habilitado."
     
    13801380
    13811381#: app/Controllers/Menus/Installments.php:53
    1382 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display.<br> You can use the following variables: {installments}, {value}, {total_value}, {interest}"
    1383 msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada.<br> Puede usar las siguientes variables: {installments}, {value}, {total_value}, {interest}"
    1384 
    1385 #: app/Controllers/Menus/Settings.php:128
     1382msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display."
     1383msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada."
     1384
     1385#: app/Controllers/Menus/Settings.php:135
    13861386msgid "Use existing street number field"
    1387 msgstr "Usar campo de número de calle existente"
    1388 
    1389 #: app/Controllers/Menus/Settings.php:131
     1387msgstr "Utilizá el campo existente del número de calle."
     1388
     1389#: app/Controllers/Menus/Settings.php:138
    13901390msgid "Enable this option if your checkout already includes a street number field. When enabled, the plugin will use your existing field instead of adding a new one."
    13911391msgstr "Habilite esta opción si su proceso de pago ya incluye un campo para el número de calle. Cuando está habilitado, el plugin utilizará su campo existente en lugar de agregar uno nuevo."
  • wc-koin-official/trunk/languages/wc-koin-official-es_ES.po

    r3279008 r3288528  
    13661366msgstr "Habilite esta opción si su tienda ya tiene un campo de documento existente en el proceso de pago. Cuando está habilitado, el plugin utilizará su campo de documento existente en lugar de crear sus propios campos de documento específicos por país."
    13671367
    1368 #: app/Controllers/Menus/Settings.php:135
     1368#: app/Controllers/Menus/Settings.php:128
    13691369msgid "Custom document field"
    13701370msgstr "Campo de documento personalizado"
    13711371
    1372 #: app/Controllers/Menus/Settings.php:138
     1372#: app/Controllers/Menus/Settings.php:131
    13731373msgid "Enter the meta_key of your existing document field in checkout that should be used by Koin. This field is required when 'Override document fields' is enabled."
    13741374msgstr "Ingrese la meta_key de su campo de documento existente en el proceso de pago que debe ser utilizado por Koin. Este campo es obligatorio cuando 'Sobrescribir campos de documento' está habilitado."
     
    13791379
    13801380#: app/Controllers/Menus/Installments.php:53
    1381 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display.<br> You can use the following variables: {installments}, {value}, {total_value}, {interest}"
    1382 msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada.<br> Puede usar las siguientes variables: {installments}, {value}, {total_value}, {interest}"
    1383 
    1384 #: app/Controllers/Menus/Settings.php:128
     1381msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display."
     1382msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada."
     1383
     1384#: app/Controllers/Menus/Settings.php:135
    13851385msgid "Use existing street number field"
    1386 msgstr "Usar campo de número de calle existente"
    1387 
    1388 #: app/Controllers/Menus/Settings.php:131
     1386msgstr "Utilizá el campo existente del número de calle."
     1387
     1388#: app/Controllers/Menus/Settings.php:138
    13891389msgid "Enable this option if your checkout already includes a street number field. When enabled, the plugin will use your existing field instead of adding a new one."
    13901390msgstr "Habilite esta opción si su proceso de pago ya incluye un campo de número de calle. Cuando está habilitado, el plugin utilizará su campo existente en lugar de agregar uno nuevo."
  • wc-koin-official/trunk/languages/wc-koin-official-es_MX.po

    r3279008 r3288528  
    13651365msgstr "Habilite esta opción si su tienda ya tiene un campo de documento existente en el proceso de pago. Cuando está habilitado, el plugin utilizará su campo de documento existente en lugar de crear sus propios campos de documento específicos por país."
    13661366
    1367 #: app/Controllers/Menus/Settings.php:135
     1367#: app/Controllers/Menus/Settings.php:128
    13681368msgid "Custom document field"
    13691369msgstr "Campo de documento personalizado"
    13701370
    1371 #: app/Controllers/Menus/Settings.php:138
     1371#: app/Controllers/Menus/Settings.php:131
    13721372msgid "Enter the meta_key of your existing document field in checkout that should be used by Koin. This field is required when 'Override document fields' is enabled."
    13731373msgstr "Ingrese la meta_key de su campo de documento existente en el proceso de pago que debe ser utilizado por Koin. Este campo es obligatorio cuando 'Sobrescribir campos de documento' está habilitado."
     
    13781378
    13791379#: app/Controllers/Menus/Installments.php:53
    1380 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display.<br> You can use the following variables: {installments}, {value}, {total_value}, {interest}"
    1381 msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada.<br> Puede usar las siguientes variables: {installments}, {value}, {total_value}, {interest}"
    1382 
    1383 #: app/Controllers/Menus/Settings.php:128
     1380msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display."
     1381msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada."
     1382
     1383#: app/Controllers/Menus/Settings.php:135
    13841384msgid "Use existing street number field"
    1385 msgstr "Usar campo de número de calle existente"
    1386 
    1387 #: app/Controllers/Menus/Settings.php:131
     1385msgstr "Utilizá el campo existente del número de calle."
     1386
     1387#: app/Controllers/Menus/Settings.php:138
    13881388msgid "Enable this option if your checkout already includes a street number field. When enabled, the plugin will use your existing field instead of adding a new one."
    13891389msgstr "Habilite esta opción si su proceso de pago ya incluye un campo de número de calle. Cuando está habilitado, el plugin utilizará su campo existente en lugar de agregar uno nuevo."
  • wc-koin-official/trunk/languages/wc-koin-official-es_PE.po

    r3279008 r3288528  
    13651365msgstr "Habilite esta opción si su tienda ya tiene un campo de documento existente en el proceso de pago. Cuando está habilitado, el plugin utilizará su campo de documento existente en lugar de crear sus propios campos de documento específicos por país."
    13661366
    1367 #: app/Controllers/Menus/Settings.php:135
     1367#: app/Controllers/Menus/Settings.php:128
    13681368msgid "Custom document field"
    13691369msgstr "Campo de documento personalizado"
    13701370
    1371 #: app/Controllers/Menus/Settings.php:138
     1371#: app/Controllers/Menus/Settings.php:131
    13721372msgid "Enter the meta_key of your existing document field in checkout that should be used by Koin. This field is required when 'Override document fields' is enabled."
    13731373msgstr "Ingrese la meta_key de su campo de documento existente en el proceso de pago que debe ser utilizado por Koin. Este campo es obligatorio cuando 'Sobrescribir campos de documento' está habilitado."
     
    13781378
    13791379#: app/Controllers/Menus/Installments.php:53
    1380 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display.<br> You can use the following variables: {installments}, {value}, {total_value}, {interest}"
    1381 msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada.<br> Puede usar las siguientes variables: {installments}, {value}, {total_value}, {interest}"
    1382 
    1383 #: app/Controllers/Menus/Settings.php:128
     1380msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display."
     1381msgstr "Defina cómo se mostrarán las cuotas en el checkout. Deje el campo en blanco para la visualización predeterminada."
     1382
     1383#: app/Controllers/Menus/Settings.php:135
    13841384msgid "Use existing street number field"
    1385 msgstr "Usar campo de número de calle existente"
    1386 
    1387 #: app/Controllers/Menus/Settings.php:131
     1385msgstr "Utilizá el campo existente del número de calle."
     1386
     1387#: app/Controllers/Menus/Settings.php:138
    13881388msgid "Enable this option if your checkout already includes a street number field. When enabled, the plugin will use your existing field instead of adding a new one."
    13891389msgstr "Habilite esta opción si su proceso de pago ya incluye un campo de número de calle. Cuando está habilitado, el plugin utilizará su campo existente en lugar de agregar uno nuevo."
  • wc-koin-official/trunk/languages/wc-koin-official-pt_BR.po

    r3279008 r3288528  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Koin Official Payments 1.3.7\n"
     3"Project-Id-Version: Koin Official Payments 1.3.8\n"
    44"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-koin-official\n"
    55"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    13661366msgstr "Ative esta opção se sua loja já possui um campo de documento existente no checkout. Quando ativado, o plugin usará seu campo de documento existente em vez de criar seus próprios campos de documento específicos por país."
    13671367
    1368 #: app/Controllers/Menus/Settings.php:135
     1368#: app/Controllers/Menus/Settings.php:128
    13691369msgid "Custom document field"
    13701370msgstr "Campo de documento personalizado"
    13711371
    1372 #: app/Controllers/Menus/Settings.php:138
     1372#: app/Controllers/Menus/Settings.php:131
    13731373msgid "Enter the meta_key of your existing document field in checkout that should be used by Koin. This field is required when 'Override document fields' is enabled."
    13741374msgstr "Digite o meta_key do seu campo de documento existente no checkout que deve ser usado pela Koin. Este campo é obrigatório quando 'Substituir campos de documento' está ativado."
     
    13791379
    13801380#: app/Controllers/Menus/Installments.php:53
    1381 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display.<br> You can use the following variables: {installments}, {value}, {total_value}, {interest}"
    1382 msgstr "Defina como as parcelas serão exibidas no checkout. Deixe o campo em branco para exibição padrão.<br> Você pode usar as seguintes variáveis: {installments}, {value}, {total_value}, {interest}"
    1383 
    1384 #: app/Controllers/Menus/Settings.php:128
     1381msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display."
     1382msgstr "Defina como as parcelas serão exibidas no checkout. Deixe o campo em branco para exibição padrão."
     1383
     1384#: app/Controllers/Menus/Settings.php:135
    13851385msgid "Use existing street number field"
    13861386msgstr "Usar campo de número de endereço existente"
    13871387
    1388 #: app/Controllers/Menus/Settings.php:131
     1388#: app/Controllers/Menus/Settings.php:138
    13891389msgid "Enable this option if your checkout already includes a street number field. When enabled, the plugin will use your existing field instead of adding a new one."
    13901390msgstr "Ative esta opção se o seu checkout já inclui um campo de número de endereço. Quando ativado, o plugin usará seu campo existente em vez de adicionar um novo."
  • wc-koin-official/trunk/languages/wc-koin-official.pot

    r3279008 r3288528  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Koin Official Payments 1.3.7\n"
     5"Project-Id-Version: Koin Official Payments 1.3.8\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wc-koin-official\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    641641
    642642#: app/Controllers/Menus/Installments.php:53
    643 msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display.<br> You can use the following variables: {installments}, {value}, {total_value}, {interest}"
     643msgid "Define how the installments will be displayed on checkout. Leave the field blank for default display."
    644644msgstr ""
    645645
     
    934934msgstr ""
    935935
     936#: app/Controllers/Menus/Settings.php:135
     937msgid "Use existing street number field"
     938msgstr ""
     939
     940#: app/Controllers/Menus/Settings.php:138
     941msgid "Enable this option if your checkout already includes a street number field. When enabled, the plugin will use your existing field instead of adding a new one."
     942msgstr ""
     943
    936944#: app/Controllers/Menus/Settings.php:128
    937 msgid "Use existing street number field"
     945msgid "Custom document field"
    938946msgstr ""
    939947
    940948#: app/Controllers/Menus/Settings.php:131
    941 msgid "Enable this option if your checkout already includes a street number field. When enabled, the plugin will use your existing field instead of adding a new one."
    942 msgstr ""
    943 
    944 #: app/Controllers/Menus/Settings.php:135
    945 msgid "Custom document field"
    946 msgstr ""
    947 
    948 #: app/Controllers/Menus/Settings.php:138
    949949msgid "Enter the meta_key of your existing document field in checkout that should be used by Koin. This field is required when 'Override document fields' is enabled."
    950950msgstr ""
  • wc-koin-official/trunk/readme.txt

    r3279008 r3288528  
    44Requires at least: 5.0
    55Tested up to: 6.6
    6 Stable tag: 1.3.7
     6Stable tag: 1.3.8
    77Requires PHP: 7.4
    88License: GPLv3
     
    4242
    4343== Changelog ==
     44= 1.3.8 = - 2025-05-06
     45- Tweaks to input validation rules
     46- Fixes to translation
     47- Standardized installment display; custom placeholders no longer supported.
     48
     49
    4450= 1.3.7 = - 2025-04-17
    4551- Added toggle button to enable/disable the address number field
  • wc-koin-official/trunk/wc-koin-official.php

    r3279008 r3288528  
    44 * Plugin Name: Koin Official Payments
    55 * Plugin URI:  https://github.com/koinlatam
    6  * Version:     1.3.7
     6 * Version:     1.3.8
    77 * Description: Koin Official Payments Gateways
    88 * Text Domain: wc-koin-official
Note: See TracChangeset for help on using the changeset viewer.