Plugin Directory

Changeset 3182021


Ignore:
Timestamp:
11/05/2024 06:51:30 AM (16 months ago)
Author:
wcboost
Message:

tagging version 1.1.1

Location:
wcboost-variation-swatches
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wcboost-variation-swatches/tags/1.1.1/includes/admin/product-data.php

    r3176381 r3182021  
    340340        $variation_swatches = isset( $_POST['wcboost_variation_swatches'] ) ? $_POST['wcboost_variation_swatches'] : [];
    341341
    342         if ( ! empty( $variation_swatches ) || ! is_array( $variation_swatches ) ) {
     342        if ( empty( $variation_swatches ) || ! is_array( $variation_swatches ) ) {
    343343            return;
    344344        }
  • wcboost-variation-swatches/tags/1.1.1/readme.txt

    r3176381 r3182021  
    33Tags: woocommerce, product attribute, product color, variation swatches, variable products
    44Tested up to: 6.7
    5 Stable tag: 1.1.0
     5Stable tag: 1.1.1
    66Requires PHP: 7.0
    77Requires at least: 4.5
     
    106106  You can enable your customers to buy variable products directly from the archive pages, such as shop, category, or tag pages. By enabling the swatches selection on the archive page, your potential customers can preview variations right on the archive page and add variations to the cart. This feature can help you increase your sales and conversions by reducing the number of clicks and page loads.
    107107
     108- **Auto convert default dropdown into image swatches**
     109
     110  The plugin can automatically convert the default WooCommerce dropdowns to image swatches. It uses your variation images to create the swatches, so you don’t have to do any extra work.
     111
     112- **Create stunning dual-color and multi-color swatches**
     113
     114  You can easily create swatches that display multiple colors at once. Perfect for items like multi-colored shirts, patterned dresses, or gradient designs. Just pick the colors you want, and the plugin will display them in a split swatch. It helps your customers easily to see exactly what they’re getting.
     115
    108116- **Show variation swatches in the desired position of archive pages**
    109117
     
    182190
    183191== Changelog ==
     192
     193= 1.1.1 =
     194* Fix custom swatches update issue in product data meta box.
    184195
    185196= 1.1.0 =
  • wcboost-variation-swatches/tags/1.1.1/wcboost-variation-swatches.php

    r3176381 r3182021  
    55 * Plugin URI: https://wcboost.com/plugin/woocommerce-variation-swatches/
    66 * Author: WCBoost
    7  * Version: 1.1.0
     7 * Version: 1.1.1
    88 * Author URI: https://wcboost.com/
    99 *
  • wcboost-variation-swatches/trunk/includes/admin/product-data.php

    r3176381 r3182021  
    340340        $variation_swatches = isset( $_POST['wcboost_variation_swatches'] ) ? $_POST['wcboost_variation_swatches'] : [];
    341341
    342         if ( ! empty( $variation_swatches ) || ! is_array( $variation_swatches ) ) {
     342        if ( empty( $variation_swatches ) || ! is_array( $variation_swatches ) ) {
    343343            return;
    344344        }
  • wcboost-variation-swatches/trunk/readme.txt

    r3176381 r3182021  
    33Tags: woocommerce, product attribute, product color, variation swatches, variable products
    44Tested up to: 6.7
    5 Stable tag: 1.1.0
     5Stable tag: 1.1.1
    66Requires PHP: 7.0
    77Requires at least: 4.5
     
    106106  You can enable your customers to buy variable products directly from the archive pages, such as shop, category, or tag pages. By enabling the swatches selection on the archive page, your potential customers can preview variations right on the archive page and add variations to the cart. This feature can help you increase your sales and conversions by reducing the number of clicks and page loads.
    107107
     108- **Auto convert default dropdown into image swatches**
     109
     110  The plugin can automatically convert the default WooCommerce dropdowns to image swatches. It uses your variation images to create the swatches, so you don’t have to do any extra work.
     111
     112- **Create stunning dual-color and multi-color swatches**
     113
     114  You can easily create swatches that display multiple colors at once. Perfect for items like multi-colored shirts, patterned dresses, or gradient designs. Just pick the colors you want, and the plugin will display them in a split swatch. It helps your customers easily to see exactly what they’re getting.
     115
    108116- **Show variation swatches in the desired position of archive pages**
    109117
     
    182190
    183191== Changelog ==
     192
     193= 1.1.1 =
     194* Fix custom swatches update issue in product data meta box.
    184195
    185196= 1.1.0 =
  • wcboost-variation-swatches/trunk/wcboost-variation-swatches.php

    r3176381 r3182021  
    55 * Plugin URI: https://wcboost.com/plugin/woocommerce-variation-swatches/
    66 * Author: WCBoost
    7  * Version: 1.1.0
     7 * Version: 1.1.1
    88 * Author URI: https://wcboost.com/
    99 *
Note: See TracChangeset for help on using the changeset viewer.