Plugin Directory

Changeset 3042440

Timestamp:
02/28/2024 09:55:56 AM (5 months ago)
Author:
sayful
Message:

Update Carousel Slider to version 2.2.8

Location:
carousel-slider/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • carousel-slider/trunk/carousel-slider.php

    r3042265 r3042440  
    44 * Plugin URI: https://sayfulislam.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash
    55 * Description: <strong>Carousel Slider</strong> allows you to create beautiful, touch enabled, responsive carousels and sliders. It let you create SEO friendly Image carousel from Media Library or from custom URL, Video carousel using Youtube and Vimeo video, Post carousel, Hero banner slider and various types of WooCommerce products carousels.
    6  * Version: 2.2.7
     6 * Version: 2.2.
    77 * Author: Sayful Islam
    88 * Author URI: https://sayfulislam.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash
     
    5353         * @var string
    5454         */
    55         private $version = '2.2.7';
     55        private $version = '2.2.';
    5656
    5757        /**
  • carousel-slider/trunk/includes/Abstracts/OwlSetting.php

    r3042265 r3042440  
    7575     */
    7676    public function all(): array {
    77         $settings = apply_filters( 'carousel_slider/settings/owl_settings', $this->settings, $this->slider_setting );
    78 
    79         return map_deep( $settings, 'esc_attr' );
     77        return apply_filters( 'carousel_slider/settings/owl_settings', $this->settings, $this->slider_setting );
    8078    }
    8179}
  • carousel-slider/trunk/includes/Abstracts/SliderSetting.php

    r3042265 r3042440  
    332332        $slides_per_view = array();
    333333        foreach ( $slides as $prefix => $item ) {
    334             $slides_per_view[ esc_attr( $prefix ) ] = intval( $item );
     334            $slides_per_view[ esc_attr( $prefix ) ] = tval( $item );
    335335        }
    336336
  • carousel-slider/trunk/includes/Abstracts/SwiperSetting.php

    r3042265 r3042440  
    133133     */
    134134    public function all(): array {
    135         $settings = apply_filters( 'carousel_slider/settings/swiper_settings', $this->settings, $this->slider_setting );
    136 
    137         return map_deep( $settings, 'esc_attr' );
     135        return apply_filters( 'carousel_slider/settings/swiper_settings', $this->settings, $this->slider_setting );
    138136    }
    139137}
  • carousel-slider/trunk/readme.txt

    r3042265 r3042440  
    22Contributors: sayful
    33Donate link: https://www.buymeacoffee.com/sayful1
    4 Tags: carousel, carousel slider, image carousel, product carousel, woocommerce, slider
     4Tags: carousel, carousel slider, image carousel, product carousel, slider
    55Requires at least: 5.6
    66Tested up to: 6.4
    77Requires PHP: 7.0
    8 Stable tag: 2.2.7
     8Stable tag: 2.2.
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.txt
     
    9797== Changelog ==
    9898
     99
     100
     101
    99102= version 2.2.7 - 2024-02-28 =
    100103* Fix - Update data escape functionality for slider configuration.
Note: See TracChangeset for help on using the changeset viewer.