Plugin Directory

Changeset 3455196


Ignore:
Timestamp:
02/06/2026 08:04:45 AM (8 weeks ago)
Author:
clonable
Message:

version 2.9.2

Location:
clonable
Files:
136 added
14 edited

Legend:

Unmodified
Added
Removed
  • clonable/trunk/clonable-wp.php

    r3453043 r3455196  
    55Description: Official plugin for improving your clones made with Clonable.
    66Plugin URI: https://kb.clonable.net/en/introduction/getting-started/wordpress#de-clonable-plug-in-downloaden
    7 Version: 2.9.1
     7Version: 2.9.2
    88Author: Clonable BV
    99Author URI: https://www.clonable.net
     
    126126
    127127define('CLONABLE_NAME', 'Clonable');
    128 define('CLONABLE_VERSION', '2.9.1');
     128define('CLONABLE_VERSION', '2.9.2');
    129129
    130130if (defined('WP_CLI') && WP_CLI) {
  • clonable/trunk/helpers/TextTranslator.php

    r3452753 r3455196  
    3030        string $content,
    3131        ?string $cloneId = null,
    32         bool $textOnly = true,
     32        bool $textOnly = true // no trailing comma for PHP 7.4
    3333    ): string {
    3434
  • clonable/trunk/readme-da_DK.txt

    r3453043 r3455196  
    55Tested up to: 6.9
    66Requires PHP: 7.2
    7 Stable tag: 2.9.1
     7Stable tag: 2.9.2
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.9.2
     35Bugfix PHP versions lower that 8.0
     36
    3437v2.9.1
    3538Fixed bug with checkout coutry field
  • clonable/trunk/readme-de_DE.txt

    r3453043 r3455196  
    55Tested up to: 6.9
    66Requires PHP: 7.2
    7 Stable tag: 2.9.1
     7Stable tag: 2.9.2
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.9.2
     35Bugfix PHP versions lower that 8.0
     36
    3437v2.9.1
    3538Fixed bug with checkout coutry field
  • clonable/trunk/readme-es_ES.txt

    r3453043 r3455196  
    55Tested up to: 6.9
    66Requires PHP: 7.2
    7 Stable tag: 2.9.1
     7Stable tag: 2.9.2
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.9.2
     35Bugfix PHP versions lower that 8.0
     36
    3437v2.9.1
    3538Fixed bug with checkout coutry field
  • clonable/trunk/readme-fr_FR.txt

    r3453043 r3455196  
    55Tested up to: 6.9
    66Requires PHP: 7.2
    7 Stable tag: 2.9.1
     7Stable tag: 2.9.2
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.9.2
     35Bugfix PHP versions lower that 8.0
     36
    3437v2.9.1
    3538Fixed bug with checkout coutry field
  • clonable/trunk/readme-it_IT.txt

    r3453043 r3455196  
    55Tested up to: 6.9
    66Requires PHP: 7.2
    7 Stable tag: 2.9.1
     7Stable tag: 2.9.2
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.9.2
     35Bugfix PHP versions lower that 8.0
     36
    3437v2.9.1
    3538Fixed bug with checkout coutry field
  • clonable/trunk/readme-nb_NO.txt

    r3453043 r3455196  
    55Tested up to: 6.9
    66Requires PHP: 7.2
    7 Stable tag: 2.9.1
     7Stable tag: 2.9.2
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.9.2
     35Bugfix PHP versions lower that 8.0
     36
    3437v2.9.1
    3538Fixed bug with checkout coutry field
  • clonable/trunk/readme-nl_NL.txt

    r3453043 r3455196  
    55Tested up to: 6.9
    66Requires PHP: 7.2
    7 Stable tag: 2.9.1
     7Stable tag: 2.9.2
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.9.2
     35Bugfix PHP versies lager dan 8.0
     36
    3437v2.9.1
    3538Fixed bug with checkout coutry field
  • clonable/trunk/readme-sv_SE.txt

    r3453043 r3455196  
    55Tested up to: 6.9
    66Requires PHP: 7.2
    7 Stable tag: 2.9.1
     7Stable tag: 2.9.2
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.9.2
     35Bugfix PHP versions lower that 8.0
     36
    3437v2.9.1
    3538Fixed bug with checkout coutry field
  • clonable/trunk/readme.txt

    r3453043 r3455196  
    55Tested up to: 6.9
    66Requires PHP: 7.2
    7 Stable tag: 2.9.1
     7Stable tag: 2.9.2
    88License: GPL v2 or later
    99
     
    3232
    3333== Changelog ==
     34v2.9.2
     35Bugfix PHP versions lower that 8.0
     36
    3437v2.9.1
    3538Fixed bug with checkout coutry field
  • clonable/trunk/services/LanguageSwitcherService.php

    r3422714 r3455196  
    177177                $langName = $menu_language['lang_code']; // fallback
    178178
    179                 try {
     179                try { 
    180180                    $langsSetting = $plugin_language_switcher_settings['languages'] ?? '[]';
    181181
  • clonable/trunk/traits/PluginCheck.php

    r3452753 r3455196  
    1313    public function woocommerce_is_installed() {
    1414        // Test to see if WooCommerceView is active (including network activated).
    15         return $this->check_plugin_by_file('woocommerce/woocommerce.php');
     15        // We also check if the class exists, bacause it's possible to rename the root plugin folder name, which would cause the first check to fail.
     16        return $this->check_plugin_by_file('woocommerce/woocommerce.php') || class_exists('WooCommerce');   
    1617    }
    1718
     
    2930    */
    3031    public function pdf_invoices_installed() {
    31         return $this->check_plugin_by_file('woocommerce-pdf-invoices-packing-slips/woocommerce-pdf-invoices-packingslips.php');
     32        // Check for both the plugin file and the class, as the class might still be available even if the plugin folder name has been changed
     33        return $this->check_plugin_by_file('woocommerce-pdf-invoices-packing-slips/woocommerce-pdf-invoices-packingslips.php') || class_exists('WPO_WCPDF');
    3234    }   
    3335
  • clonable/trunk/views/LanguageSwitcherView.php

    r3422714 r3455196  
    120120                                                        class="item" data-value="<?php echo esc_attr($language['locale']); ?>">
    121121                                                        <i class="fflag-<?php echo esc_attr($language['region']); ?> fflag ff-sm" style="margin-right: 0.5rem; margin-bottom: 0.125rem"></i>
    122                                                         <?php echo esc_html($language['display_country']); ?>
     122                                                        <?php echo esc_html($language['display_country']) . ' <small>(' . esc_attr($language['locale']) . ')</small>'; ?>
    123123                                                    </div>
    124124                                                <?php
Note: See TracChangeset for help on using the changeset viewer.