Plugin Directory

Changeset 3258466


Ignore:
Timestamp:
03/19/2025 11:46:30 AM (10 months ago)
Author:
bandido
Message:

Version 2.8.4

Location:
checkbox
Files:
86 added
4 edited

Legend:

Unmodified
Added
Removed
  • checkbox/trunk/README.txt

    r3247990 r3258466  
    55Tested up to: 6.7
    66Requires PHP: 7.1
    7 Stable tag: 2.8.3
     7Stable tag: 2.8.4
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9292== Що нового? ==
    9393
     94= 2.8.4 =
     95* [fix] виправили uppercase label
     96
    9497= 2.8.3 =
    9598* [fix] виправили label
  • checkbox/trunk/checkbox.php

    r3247990 r3258466  
    44 * Plugin URI: https://morkva.co.ua/shop/checkbox-woocommerce?utm_source=checkbox-plugin
    55 * Description: Інтеграція WooCommerce з пРРО Checkbox
    6  * Version: 2.8.3
     6 * Version: 2.8.4
    77 * Tested up to: 6.7
    88 * Requires at least: 5.2
     
    2828
    2929# Versions number
    30 define('CHECKBOX_VERSION', '2.8.3');
     30define('CHECKBOX_VERSION', '2.8.4');
    3131define('CHECKBOX_LICENSE', 'free');
    3232
  • checkbox/trunk/includes/class-create-receipt.php

    r3247920 r3258466  
    355355            # Get payment type
    356356            $payment_new_settings = get_option('ppo_payment_type_checkbox');
    357             $payment_type_checkbox_label = isset($payment_new_settings[ $payment_method ]['label']) ? mb_strtoupper($payment_new_settings[ $payment_method ]['label']) : '';
     357            $payment_type_checkbox_label = isset($payment_new_settings[ $payment_method ]['label']) ? $payment_new_settings[ $payment_method ]['label'] : '';
    358358
    359359            # Create good array
  • checkbox/trunk/includes/class-woocommerce.php

    r3016410 r3258466  
    343343
    344344                    echo '<div class="mrkv_checkbox_action_button">
    345                     <div type="submit" class="button button-primary submit_morkva_checkbox_action">' . $button_text . '</div>
     345                    <div type="submit" class="button button-primary submit_morkva_checkbox_action" style="user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none;">' . $button_text . '</div>
    346346                    <svg style="display: none;" version="1.1" id="L9" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="30px" height="30px" x="0px" y="0px"
    347347                      viewBox="0 0 100 100" enable-background="new 0 0 0 0" xml:space="preserve">
     
    360360
    361361                    echo "<script>
     362                        let CheckboxisProcessing = false;
    362363                         jQuery('.submit_morkva_checkbox_action').click(function(){
     364                            if (CheckboxisProcessing) return;
     365                            CheckboxisProcessing = true;
    363366                            jQuery.ajax({
    364367                                url: '" .  admin_url( "admin-ajax.php" ) . "',
     
    369372                                },
    370373                                success: function( data ) {
     374                                    CheckboxisProcessing = false;
    371375                                    location.reload();
    372376                                }
Note: See TracChangeset for help on using the changeset viewer.