Plugin Directory

Changeset 2962954


Ignore:
Timestamp:
09/05/2023 09:28:16 AM (3 years ago)
Author:
EmranAhmed
Message:

Update to 2.0.26

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

Legend:

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

    r2961119 r2962954  
    77WC requires at least: 5.6
    88WC tested up to: 8.0
    9 Stable tag: 2.0.25
     9Stable tag: 2.0.26
    1010License: GPLv3
    1111License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    169169
    170170[Ruben Zuidervaart](https://wordpress.org/support/topic/does-what-it-should-with-no-issues/):
    171 > 'It just works, and the support is also pretty damn good for something that they offer for free.
    172 
    173 >Leaving a 5/5 is the least I could do 🙂'
     171> 'It just works, and the support is also pretty damn good for something that they offer for free.'
     172
     173> 'Leaving a 5/5 is the least I could do 🙂'
    174174
    175175[cl4udio](https://wordpress.org/support/topic/good-support-278/):
     
    272272👉 Show Cross Sign For Out of Stock Variation Swatches (Unlimited Variations Without hiding out of stock item from catalog)
    273273
    274 The free version of thos Swatches plugin enables you to show cross signs up to 30 variations that are currently out of stock. However, the advanced version will allow to show cross signs for unlimited variations. 
     274The free version of those Swatches plugin enables you to show cross signs up to 30 variations that are currently out of stock. However, the advanced version will allow to show cross signs for unlimited variations.
    275275
    276276  [Live Demo & Documentation](http://bit.ly/3rd-readme-demo-cross-out-of-stock-variations-more-than-30-variations)
     
    615615== Changelog ==
    616616
     617= 2.0.26 - 05-09-2023 =
     618
     619* Fix: All import plugin issue.
     620
    617621= 2.0.25 - 31-08-2023 =
    618622
  • woo-variation-swatches/trunk/assets/css/admin.css

    r2961119 r2962954  
    33 *
    44 * Author: Emran Ahmed ( emran.bd.08@gmail.com )
    5  * Date: 8/31/2023, 5:25:30 PM
     5 * Date: 9/5/2023, 3:24:35 PM
    66 * Released under the GPLv3 license.
    77 */
  • woo-variation-swatches/trunk/assets/css/frontend.css

    r2961119 r2962954  
    33 *
    44 * Author: Emran Ahmed ( emran.bd.08@gmail.com )
    5  * Date: 8/31/2023, 5:25:30 PM
     5 * Date: 9/5/2023, 3:24:35 PM
    66 * Released under the GPLv3 license.
    77 */
  • woo-variation-swatches/trunk/assets/js/admin.js

    r2961119 r2962954  
    33 *
    44 * Author: Emran Ahmed ( emran.bd.08@gmail.com )
    5  * Date: 8/31/2023, 5:25:30 PM
     5 * Date: 9/5/2023, 3:24:35 PM
    66 * Released under the GPLv3 license.
    77 */
  • woo-variation-swatches/trunk/assets/js/frontend.js

    r2961119 r2962954  
    33 *
    44 * Author: Emran Ahmed ( emran.bd.08@gmail.com )
    5  * Date: 8/31/2023, 5:25:30 PM
     5 * Date: 9/5/2023, 3:24:35 PM
    66 * Released under the GPLv3 license.
    77 */
  • woo-variation-swatches/trunk/assets/js/wp-color-picker-alpha.js

    r2961119 r2962954  
    33 *
    44 * Author: Emran Ahmed ( emran.bd.08@gmail.com )
    5  * Date: 8/31/2023, 5:25:30 PM
     5 * Date: 9/5/2023, 3:24:35 PM
    66 * Released under the GPLv3 license.
    77 */
  • woo-variation-swatches/trunk/includes/class-woo-variation-swatches-product-page.php

    r2961119 r2962954  
    142142            public function variable_children_args( $all_args, $product, $visible_only ) {
    143143               
    144                 if ( ! $visible_only ) {
    145                     // Don't load disabled variation
     144                if ( ! $visible_only && ! is_admin() ) {
     145                    // Don't load disabled variation on ajax variation threshold is 0
     146                    // Ajax variation load all variation
    146147                    $all_args[ 'post_status' ] = 'publish';
    147148                }
  • woo-variation-swatches/trunk/languages/woo-variation-swatches.pot

    r2961119 r2962954  
    88"Content-Transfer-Encoding: 8bit\n"
    99"Language-Team: Emran Ahmed <emran.bd.08@gmail.com>\n"
    10 "POT-Creation-Date: 2023-08-31 11:25+0000\n"
     10"POT-Creation-Date: 2023-09-05 09:24+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"
     
    206206msgstr ""
    207207
    208 #: ../includes/class-woo-variation-swatches-product-page.php:806, ../includes/class-woo-variation-swatches-product-page.php:832
     208#: ../includes/class-woo-variation-swatches-product-page.php:807, ../includes/class-woo-variation-swatches-product-page.php:833
    209209msgid "Choose an option"
    210210msgstr ""
  • woo-variation-swatches/trunk/woo-variation-swatches.php

    r2961119 r2962954  
    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.25
     7     * Version: 2.0.26
    88     * Domain Path: /languages
    99     * Requires PHP: 7.0
     
    1919   
    2020    if ( ! defined( 'WOO_VARIATION_SWATCHES_PLUGIN_VERSION' ) ) {
    21         define( 'WOO_VARIATION_SWATCHES_PLUGIN_VERSION', '2.0.25' );
     21        define( 'WOO_VARIATION_SWATCHES_PLUGIN_VERSION', '2.0.26' );
    2222    }
    2323   
Note: See TracChangeset for help on using the changeset viewer.