Changeset 3345410
- Timestamp:
- 08/16/2025 08:01:43 AM (6 months ago)
- Location:
- daily-slider
- Files:
-
- 51 added
- 2 edited
-
assets/screenshot-8.png (added)
-
tags/1.0.0/css (added)
-
tags/1.0.0/css/advanced-button.css (added)
-
tags/1.0.0/nex-button.php (added)
-
tags/1.0.1/css (added)
-
tags/1.0.1/css/advanced-button.css (added)
-
tags/1.0.1/nex-button.php (added)
-
tags/1.0.1/widgets/advanced-button (added)
-
tags/1.0.1/widgets/advanced-button/advanced-button.php (added)
-
tags/1.0.2 (added)
-
tags/1.0.2/css (added)
-
tags/1.0.2/css/advanced-button.css (added)
-
tags/1.0.2/nex-button.php (added)
-
tags/1.0.2/readme.txt (added)
-
tags/1.0.2/widgets (added)
-
tags/1.0.2/widgets/advanced-button (added)
-
tags/1.0.2/widgets/advanced-button/advanced-button.php (added)
-
tags/1.6 (added)
-
tags/1.6/assets (added)
-
tags/1.6/assets/css (added)
-
tags/1.6/assets/css/common.css (added)
-
tags/1.6/assets/css/widgets (added)
-
tags/1.6/assets/css/widgets/eldorado.css (added)
-
tags/1.6/assets/css/widgets/marqee.css (added)
-
tags/1.6/assets/css/widgets/pixel.css (added)
-
tags/1.6/assets/css/widgets/review-carousel.css (added)
-
tags/1.6/assets/images (added)
-
tags/1.6/assets/images/item-1.svg (added)
-
tags/1.6/assets/images/item-2.svg (added)
-
tags/1.6/assets/images/item-3.svg (added)
-
tags/1.6/assets/js (added)
-
tags/1.6/assets/js/widgets (added)
-
tags/1.6/assets/js/widgets/eldorado.js (added)
-
tags/1.6/assets/js/widgets/marquee.js (added)
-
tags/1.6/assets/js/widgets/pixel.js (added)
-
tags/1.6/assets/js/widgets/review-carousel.js (added)
-
tags/1.6/daily-slider.php (added)
-
tags/1.6/readme.txt (added)
-
tags/1.6/widgets (added)
-
tags/1.6/widgets/eldorado (added)
-
tags/1.6/widgets/eldorado/eldorado.php (added)
-
tags/1.6/widgets/marquee (added)
-
tags/1.6/widgets/marquee/marquee.php (added)
-
tags/1.6/widgets/pixel (added)
-
tags/1.6/widgets/pixel/pixel.php (added)
-
tags/1.6/widgets/review-carousel (added)
-
tags/1.6/widgets/review-carousel/review-carousel.php (added)
-
trunk/assets/css/widgets/marqee.css (added)
-
trunk/assets/js/widgets/marquee.js (added)
-
trunk/daily-slider.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (6 diffs)
-
trunk/widgets/marquee (added)
-
trunk/widgets/marquee/marquee.php (added)
Legend:
- Unmodified
- Added
- Removed
-
daily-slider/trunk/daily-slider.php
r3278170 r3345410 3 3 * Plugin Name: Daily Slider 4 4 * Description: Enhance Elementor with customizable hero sliders, review carousels, and portfolio showcases, featuring responsive design, animations, and hover effects. 5 * Version: 1. 55 * Version: 1.6 6 6 * Author: wpcoder75 7 7 * Author URI: https://github.com/asikwp75 … … 19 19 20 20 class DailySliderPlugin { 21 const VERSION = '1. 5';21 const VERSION = '1.6'; 22 22 const MINIMUM_ELEMENTOR_VERSION = '3.26.0'; 23 23 const MINIMUM_PHP_VERSION = '7.4'; … … 62 62 wp_enqueue_style( 'DailySlider-pixel-styles', plugins_url( 'assets/css/widgets/pixel.css', __FILE__ ), array(), '1.0.0', false ); 63 63 wp_enqueue_style( 'DailySlider-review-carousel-styles', plugins_url( 'assets/css/widgets/review-carousel.css', __FILE__ ), array(), '1.0.0', false ); 64 wp_enqueue_style( 'DailySlider-marquee-styles', plugins_url( 'assets/css/widgets/marqee.css', __FILE__ ), array(), '1.0.0', false ); 64 65 wp_enqueue_style( 'DailySlider-common-styles', plugins_url( 'assets/css/common.css', __FILE__ ), array(), '1.0.0', false ); 65 66 } … … 69 70 wp_enqueue_script( 'DailySlider-pixel-scripts', plugins_url( 'assets/js/widgets/pixel.js', __FILE__ ), array( 'jquery' ), '1.0.0', true ); 70 71 wp_enqueue_script( 'DailySlider-review-carousel-scripts', plugins_url( 'assets/js/widgets/review-carousel.js', __FILE__ ), array( 'jquery' ), '1.0.0', true ); 72 wp_enqueue_script( 'DailySlider-marquee-scripts', plugins_url( 'assets/js/widgets/marquee.js', __FILE__ ), array( 'jquery' ), '1.0.0', true ); 71 73 } 72 74 … … 93 95 require_once plugin_dir_path( __FILE__ ) . 'widgets/review-carousel/review-carousel.php'; 94 96 $widgets_manager->register( new \DailySlider\Widgets\ReviewCarousel_Widget() ); 97 98 require_once plugin_dir_path( __FILE__ ) . 'widgets/marquee/marquee.php'; 99 $widgets_manager->register( new \DailySlider\Widgets\Marquee_Widget() ); 95 100 } 96 101 -
daily-slider/trunk/readme.txt
r3278170 r3345410 1 === Daily Slider – Powerful Elementor Addons for Stunning Sliders!===1 === Daily Slider === 2 2 Contributors: wpcoder75 3 Tags: elementor, slider, DailySlider, carousel, animation3 Tags: elementor, slider, carousel, marquee, hero-slider, testimonial, portfolio, animation, responsive, widgets, addon 4 4 Requires at least: 5.0 5 5 Tested up to: 6.8 6 Stable Tag: 1. 57 Requires PHP: 7. 26 Stable Tag: 1.6 7 Requires PHP: 7.4 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 11 Powerful Elementor addon with customizable hero sliders, review carousels, and portfolio showcases featuring responsive design and smooth animations. 10 12 11 13 == Description == … … 22 24 - **Review Carousel Widget (Testimonial Carousel)**: Display customer reviews and testimonials in an interactive carousel format. 23 25 - **Eldorado Widget (Image Carousel)**: Showcase portfolio items or images in a stylish and sleek carousel layout. 26 - **Marquee Slider Widget**: Create smooth scrolling marquee effects for displaying logos, testimonials, or any content in a continuous loop. 24 27 - **Customization options** for text, images, spacing, colors, and typography. 25 28 - **Seamless integration with Elementor's drag-and-drop editor** for easy design. … … 40 43 - An elegant image carousel widget designed for portfolio showcases, photography galleries, or any image-based content. 41 44 45 - **Marquee Slider** 46 - A smooth scrolling marquee widget perfect for displaying logos, testimonials, announcements, or any content in a continuous loop. 47 - Features customizable speed, direction, pause on hover, and edge masking effects. 48 42 49 == Installation == 43 50 … … 45 52 2. Activate the plugin through the 'Plugins' screen in WordPress. 46 53 3. Open the **Elementor Editor** and find the **DailySlider** widgets under the **Elementor Widgets** panel. 47 4. Drag and drop your desired widget (Pixel, Review Carousel, or Eldorado) into your page and start customizing.54 4. Drag and drop your desired widget (Pixel, Review Carousel, Eldorado, or Marquee Slider) into your page and start customizing. 48 55 49 56 == Frequently Asked Questions == … … 60 67 == Changelog == 61 68 69 = 1.6 [31th January 2025] = 70 71 - Added **Marquee Slider Widget** with smooth scrolling animations, customizable speed, direction, and pause on hover functionality. 72 - Enhanced marquee widget with edge masking effects and responsive design. 73 - Improved overall plugin stability and performance. 74 62 75 = 1.5 [31th January 2025] = 63 76 64 77 - Added **hover transform scale effect** to **Eldorado Widget**, for improved image interaction. 65 66 78 67 79 = 1.0.0 [28th January 2025] = … … 71 83 * **Review Carousel**: Dynamic testimonial showcase 72 84 * **Eldorado**: Portfolio and image carousel 85 * **Marquee Slider**: Smooth scrolling marquee effects 73 86 74 87 == Upgrade Notice ==
Note: See TracChangeset
for help on using the changeset viewer.