Plugin Directory

Changeset 2727777


Ignore:
Timestamp:
05/21/2022 11:30:50 AM (4 years ago)
Author:
shapedplugin
Message:

Release 2.5.4 version

Location:
woo-product-slider
Files:
413 added
7 edited

Legend:

Unmodified
Added
Removed
  • woo-product-slider/trunk/main.php

    r2714289 r2727777  
    11<?php
    2 
    32/**
    43 * Plugin Name:     Product Slider for WooCommerce
    54 * Plugin URI:      https://shapedplugin.com/plugin/woocommerce-product-slider-pro/?ref=1
    65 * Description:     Slide your WooCommerce Products in a tidy and professional slider or carousel with an easy-to-use and intuitive Shortcode Generator. Highly customizable and No coding required!
    7  * Version:         2.5.3
     6 * Version:         2.5.4
    87 * Author:          ShapedPlugin
    98 * Author URI:      https://shapedplugin.com/
     
    1312 * Requires PHP: 5.6
    1413 * WC requires at least: 4.5
    15  * WC tested up to: 6.3.1
     14 * WC tested up to: 6.5.1
    1615 * Text Domain:     woo-product-slider
    1716 * Domain Path:     /languages
     
    2827}
    2928if ( ! defined( 'SP_WPS_VERSION' ) ) {
    30     define('SP_WPS_VERSION', '2.5.3');
     29    define('SP_WPS_VERSION', '2.5.4');
    3130}
    3231if ( ! defined( 'SP_WPS_PATH' ) ) {
  • woo-product-slider/trunk/readme.txt

    r2714289 r2727777  
    44Tags: woocommerce product slider, woocommerce products carousel, woocommerce product carousel slider, woocommerce widget product slider, product carousel, product slider, best woocommerce product slider, best product slider, product slider for woocommerce, product carousel for woocommerce, woocommerce category slider, woocommerce child category, woocommerce best selling products slider, upsells products, cross-sells related products, related products slider, specific products slider, on sale products display, woocommerce featured products carousel, woocommerce free products, woocommerce out of stock products, woocommerce products from category, woocommerce to rated products, woocommerce most viewed products, woocommerce products from attributes,simple product, grouped product, external/affiliate product, variable product, woo product slider
    55Requires at least: 5.0
    6 Tested up to: 5.9.3
     6Tested up to: 6.0
    77Requires PHP: 5.6
    88WC requires at least: 4.5
     
    168168== Changelog ==
    169169
     170= 2.5.4 - May 21, 2022 =
     171* New: Gutenberg Block to insert Category Slider shortcode to preview.
     172* Tested: WordPress 6.0 compatibility.
     173
    170174= 2.5.3 - Apr 25, 2022 =
    171175* Fix: Right to Left Mode Slider movement stops to left position in LTR site.
  • woo-product-slider/trunk/src/Frontend/assets/js/slick-config.js

    r2701340 r2727777  
    55        var custom_id = $(this).attr('id');
    66
    7         if (custom_id != '') {
     7        if (custom_id != '' && !$( '#' + custom_id).hasClass('slick-initialized')) {
    88            jQuery('#' + custom_id).slick({
    99                prevArrow: "<div class='slick-prev'><i class='fa fa-angle-left'></i></div>",
  • woo-product-slider/trunk/src/Frontend/assets/js/slick-config.min.js

    r2701340 r2727777  
    1 jQuery(document).ready((function($){$(".wps-product-section").each((function(index){var custom_id=$(this).attr("id");""!=custom_id&&jQuery("#"+custom_id).slick({prevArrow:"<div class='slick-prev'><i class='fa fa-angle-left'></i></div>",nextArrow:"<div class='slick-next'><i class='fa fa-angle-right'></i></div>",slidesToScroll:1})})),$("body").find(".wps-product-section").each((function(){var _this=$(this),custom_id=$(this).attr("id"),preloader;if("1"==_this.data("preloader")){var parents_class,parents_siblings_id=$("#"+custom_id).parent(".wps-slider-section").find(".wps-preloader").attr("id");$(document).ready((function(){$("#"+parents_siblings_id).animate({opacity:1},600).hide(),$("#"+custom_id).animate({opacity:1},600)}))}}))}));
     1jQuery(document).ready((function($){$(".wps-product-section").each((function(index){var custom_id=$(this).attr("id");""==custom_id||$("#"+custom_id).hasClass("slick-initialized")||jQuery("#"+custom_id).slick({prevArrow:"<div class='slick-prev'><i class='fa fa-angle-left'></i></div>",nextArrow:"<div class='slick-next'><i class='fa fa-angle-right'></i></div>",slidesToScroll:1})})),$("body").find(".wps-product-section").each((function(){var _this=$(this),custom_id=$(this).attr("id"),preloader;if("1"==_this.data("preloader")){var parents_class,parents_siblings_id=$("#"+custom_id).parent(".wps-slider-section").find(".wps-preloader").attr("id");$(document).ready((function(){$("#"+parents_siblings_id).animate({opacity:1},600).hide(),$("#"+custom_id).animate({opacity:1},600)}))}}))}));
  • woo-product-slider/trunk/src/Includes/WooProductSlider.php

    r2701340 r2727777  
    1515use ShapedPlugin\WooProductSlider\Frontend\Frontend;
    1616use ShapedPlugin\WooProductSlider\Admin\Admin;
     17use ShapedPlugin\WooProductSlider\Admin\Gutenberg_Block;
    1718
    1819// If this file is called directly, abort.
     
    117118        add_action( 'wp_ajax_wpsp_export_shortcodes', array( $import_export, 'export_shortcodes' ) );
    118119        add_action( 'wp_ajax_wpsp_import_shortcodes', array( $import_export, 'import_shortcodes' ) );
     120
     121        // Gutenberg Block.
     122        if ( version_compare( $GLOBALS['wp_version'], '5.3', '>=' ) ) {
     123            new Gutenberg_Block();
     124        }
    119125    }
    120126
Note: See TracChangeset for help on using the changeset viewer.