Plugin Directory

Changeset 2983960


Ignore:
Timestamp:
10/25/2023 05:38:04 PM (2 years ago)
Author:
EmranAhmed
Message:

Update to 2.0.28

Location:
woo-variation-swatches
Files:
60 added
9 edited

Legend:

Unmodified
Added
Removed
  • woo-variation-swatches/trunk/README.txt

    r2980658 r2983960  
    77WC requires at least: 5.6
    88WC tested up to: 8.2
    9 Stable tag: 2.0.27
     9Stable tag: 2.0.28
    1010License: GPLv3
    1111License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    615615== Changelog ==
    616616
     617= 2.0.28 - 25-10-2023 =
     618
     619* Fix: Hide disabled variation attributes
     620
    617621= 2.0.27 - 18-10-2023 =
    618622
  • woo-variation-swatches/trunk/assets/css/admin.css

    r2980658 r2983960  
    33 *
    44 * Author: Emran Ahmed ( emran.bd.08@gmail.com )
    5  * Date: 10/18/2023, 4:40:19 PM
     5 * Date: 10/25/2023, 11:31:20 PM
    66 * Released under the GPLv3 license.
    77 */
  • woo-variation-swatches/trunk/assets/css/frontend.css

    r2980658 r2983960  
    33 *
    44 * Author: Emran Ahmed ( emran.bd.08@gmail.com )
    5  * Date: 10/18/2023, 4:40:19 PM
     5 * Date: 10/25/2023, 11:31:20 PM
    66 * Released under the GPLv3 license.
    77 */
  • woo-variation-swatches/trunk/assets/js/admin.js

    r2980658 r2983960  
    33 *
    44 * Author: Emran Ahmed ( emran.bd.08@gmail.com )
    5  * Date: 10/18/2023, 4:40:19 PM
     5 * Date: 10/25/2023, 11:31:20 PM
    66 * Released under the GPLv3 license.
    77 */
  • woo-variation-swatches/trunk/assets/js/frontend.js

    r2980658 r2983960  
    33 *
    44 * Author: Emran Ahmed ( emran.bd.08@gmail.com )
    5  * Date: 10/18/2023, 4:40:19 PM
     5 * Date: 10/25/2023, 11:31:20 PM
    66 * Released under the GPLv3 license.
    77 */
  • woo-variation-swatches/trunk/assets/js/wp-color-picker-alpha.js

    r2980658 r2983960  
    33 *
    44 * Author: Emran Ahmed ( emran.bd.08@gmail.com )
    5  * Date: 10/18/2023, 4:40:19 PM
     5 * Date: 10/25/2023, 11:31:20 PM
    66 * Released under the GPLv3 license.
    77 */
  • woo-variation-swatches/trunk/includes/class-woo-variation-swatches-product-page.php

    r2980658 r2983960  
    4040                add_action( 'woocommerce_before_variations_form', array( $this, 'before_variations_form' ) );
    4141                add_action( 'woocommerce_after_variations_form', array( $this, 'after_variations_form' ) );
     42               
     43               
     44                // add_action( 'pmxi_before_post_import', $callback);
     45               
    4246                // add_action( 'woocommerce_after_variations_form', array( $this, 'enqueue_script' ) );
    4347               
     
    142146            public function variable_children_args( $all_args, $product, $visible_only ) {
    143147               
    144                 if ( ! $visible_only && ! is_admin() ) {
    145                     // Don't load disabled variation on ajax variation threshold is 0
    146                     // Ajax variation load all variation
     148                // The issue is: During import it does not save disabled variation.
     149                if ( function_exists( 'wp_all_import_get_import_id' ) && wp_all_import_get_import_id() !== 'new' ) {
     150                    return $all_args;
     151                }
     152               
     153                // Show only published variation product.
     154                if ( ! $visible_only ) {
    147155                    $all_args[ 'post_status' ] = 'publish';
    148156                }
  • woo-variation-swatches/trunk/languages/woo-variation-swatches.pot

    r2980658 r2983960  
    88"Content-Transfer-Encoding: 8bit\n"
    99"Language-Team: Emran Ahmed <emran.bd.08@gmail.com>\n"
    10 "POT-Creation-Date: 2023-10-18 10:40+0000\n"
     10"POT-Creation-Date: 2023-10-25 17:31+0000\n"
    1111"X-Poedit-Basepath: ..\n"
    1212"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
     
    202202msgstr ""
    203203
    204 #: ../includes/class-woo-variation-swatches-product-page.php:128
     204#: ../includes/class-woo-variation-swatches-product-page.php:132
    205205msgid "%s left"
    206206msgstr ""
    207207
    208 #: ../includes/class-woo-variation-swatches-product-page.php:809, ../includes/class-woo-variation-swatches-product-page.php:835
     208#: ../includes/class-woo-variation-swatches-product-page.php:817, ../includes/class-woo-variation-swatches-product-page.php:843
    209209msgid "Choose an option"
    210210msgstr ""
  • woo-variation-swatches/trunk/woo-variation-swatches.php

    r2980658 r2983960  
    55     * Description: Beautiful colors, images and buttons variation swatches for woocommerce product attributes. Requires WooCommerce 5.6+
    66     * Author: Emran Ahmed
    7      * Version: 2.0.27
     7     * Version: 2.0.28
    88     * Domain Path: /languages
    99     * Requires PHP: 7.4
     
    1919   
    2020    if ( ! defined( 'WOO_VARIATION_SWATCHES_PLUGIN_VERSION' ) ) {
    21         define( 'WOO_VARIATION_SWATCHES_PLUGIN_VERSION', '2.0.27' );
     21        define( 'WOO_VARIATION_SWATCHES_PLUGIN_VERSION', '2.0.28' );
    2222    }
    2323   
Note: See TracChangeset for help on using the changeset viewer.