Changeset 3423731
- Timestamp:
- 12/19/2025 01:54:19 PM (2 months ago)
- Location:
- daily-slider
- Files:
-
- 39 added
- 8 edited
-
tags/2.5.0 (added)
-
tags/2.5.0/admin (added)
-
tags/2.5.0/admin/dashboard.php (added)
-
tags/2.5.0/admin/welcome-page.php (added)
-
tags/2.5.0/admin/widget-manager.php (added)
-
tags/2.5.0/assets (added)
-
tags/2.5.0/assets/css (added)
-
tags/2.5.0/assets/css/common.css (added)
-
tags/2.5.0/assets/css/widgets (added)
-
tags/2.5.0/assets/css/widgets/eldorado.css (added)
-
tags/2.5.0/assets/css/widgets/marqee.css (added)
-
tags/2.5.0/assets/css/widgets/marquee.css (added)
-
tags/2.5.0/assets/css/widgets/pixel.css (added)
-
tags/2.5.0/assets/css/widgets/review-carousel.css (added)
-
tags/2.5.0/assets/css/widgets/testimonials-marquee.css (added)
-
tags/2.5.0/assets/images (added)
-
tags/2.5.0/assets/images/item-1.svg (added)
-
tags/2.5.0/assets/images/item-2.svg (added)
-
tags/2.5.0/assets/images/item-3.svg (added)
-
tags/2.5.0/assets/js (added)
-
tags/2.5.0/assets/js/widgets (added)
-
tags/2.5.0/assets/js/widgets/eldorado.js (added)
-
tags/2.5.0/assets/js/widgets/marquee.js (added)
-
tags/2.5.0/assets/js/widgets/pixel.js (added)
-
tags/2.5.0/assets/js/widgets/review-carousel.js (added)
-
tags/2.5.0/assets/js/widgets/testimonials-marquee.js (added)
-
tags/2.5.0/daily-slider.php (added)
-
tags/2.5.0/readme.txt (added)
-
tags/2.5.0/widgets (added)
-
tags/2.5.0/widgets/eldorado (added)
-
tags/2.5.0/widgets/eldorado/eldorado.php (added)
-
tags/2.5.0/widgets/marquee (added)
-
tags/2.5.0/widgets/marquee/marquee.php (added)
-
tags/2.5.0/widgets/pixel (added)
-
tags/2.5.0/widgets/pixel/pixel.php (added)
-
tags/2.5.0/widgets/review-carousel (added)
-
tags/2.5.0/widgets/review-carousel/review-carousel.php (added)
-
tags/2.5.0/widgets/testimonials-marquee (added)
-
tags/2.5.0/widgets/testimonials-marquee/testimonials-marquee.php (added)
-
trunk/admin/welcome-page.php (modified) (3 diffs)
-
trunk/daily-slider.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/widgets/eldorado/eldorado.php (modified) (1 diff)
-
trunk/widgets/marquee/marquee.php (modified) (1 diff)
-
trunk/widgets/pixel/pixel.php (modified) (1 diff)
-
trunk/widgets/review-carousel/review-carousel.php (modified) (1 diff)
-
trunk/widgets/testimonials-marquee/testimonials-marquee.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
daily-slider/trunk/admin/welcome-page.php
r3423716 r3423731 258 258 } 259 259 .new-widget-notice { 260 background: linear-gradient(135deg, # ff9a560%, #ff6b35 100%);260 background: linear-gradient(135deg, #000000 0%, #ff6b35 100%); 261 261 border-radius: 12px; 262 262 padding: 24px; … … 270 270 justify-content: center; 271 271 gap: 20px; 272 text-align: center;272 text-align: left; 273 273 } 274 274 .notice-icon { … … 286 286 color: #fff200; 287 287 font-size: 28px; 288 display: block; 289 width: 28px; 290 height: 28px; 288 291 } 289 292 .notice-text { -
daily-slider/trunk/daily-slider.php
r3423716 r3423731 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: 2. 4.05 * Version: 2.5.0 6 6 * Author: wpcoder75 7 7 * Author URI: https://github.com/asikwp75 -
daily-slider/trunk/readme.txt
r3423716 r3423731 4 4 Requires at least: 5.0 5 5 Tested up to: 6.9 6 Stable Tag: 2. 4.06 Stable Tag: 2.5.0 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 110 110 == Changelog == 111 111 112 ### = 2. 4.0 [19th December 2025] =112 ### = 2.5.0 [19th December 2025] = 113 113 114 114 * Added: **Testimonials Marquee Widget** — brand new dedicated widget for showcasing customer testimonials in a scrolling format. … … 116 116 * Added: User profile section with author names, company details, and professional images. 117 117 * Added: Comprehensive styling controls for testimonial cards including background, borders, shadows, and hover effects. 118 * Added: Responsive width controls for both individual cards and container with support for px, %, and vw units. 119 * Added: Advanced typography controls for testimonial content, author names, and company information. 120 * Fixed: Elementor controls structure — resolved "Undefined array key 'tabs_wrapper'" warning with proper tabs organization. 121 * Fixed: Class naming consistency — resolved TestimonialsMarquee_Widget class registration issues. 122 * Enhanced: Text overflow handling with proper CSS controls for better content display. 123 * Improved: Code structure with organized function declarations and duplicate removal. 118 * Added: Responsive width controls for both individual cards and container with support for px, %, and vw 124 119 125 120 ### = 2.3.0 [12th December 2025] = -
daily-slider/trunk/widgets/eldorado/eldorado.php
r3230738 r3423731 17 17 18 18 public function get_title() { 19 return __('Eldorado ', 'daily-slider');19 return __('Eldorado (DS)', 'daily-slider'); 20 20 } 21 21 -
daily-slider/trunk/widgets/marquee/marquee.php
r3417895 r3423731 23 23 24 24 public function get_title() { 25 return esc_html__('Marquee Slider', 'daily-slider');25 return esc_html__('Marquee (DS)', 'daily-slider'); 26 26 } 27 27 -
daily-slider/trunk/widgets/pixel/pixel.php
r3351312 r3423731 18 18 19 19 public function get_title() { 20 return __( 'Pixel ', 'daily-slider' );20 return __( 'Pixel (DS)', 'daily-slider' ); 21 21 } 22 22 -
daily-slider/trunk/widgets/review-carousel/review-carousel.php
r3230738 r3423731 17 17 18 18 public function get_title() { 19 return __('Review Carousel ', 'daily-slider');19 return __('Review Carousel (DS)', 'daily-slider'); 20 20 } 21 21 -
daily-slider/trunk/widgets/testimonials-marquee/testimonials-marquee.php
r3423716 r3423731 23 23 24 24 public function get_title() { 25 return esc_html__('Testimonials Marquee ', 'daily-slider');25 return esc_html__('Testimonials Marquee (DS)', 'daily-slider'); 26 26 } 27 27
Note: See TracChangeset
for help on using the changeset viewer.