Changeset 3348764
- Timestamp:
- 08/22/2025 05:54:13 PM (6 months ago)
- Location:
- xpro-elementor-addons/trunk
- Files:
-
- 4 edited
-
changelog.txt (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
widgets/info-list/layout/frontend.php (modified) (1 diff)
-
xpro-elementor-addons.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
xpro-elementor-addons/trunk/changelog.txt
r3342913 r3348764 1 2 = V 1.4.18 – 22 Aug 2025 3 4 - Fix: Resolved vulnerability in the Info List Widget. 5 1 6 2 7 = V 1.4.17 – 11 Aug 2025 3 8 4 Fix: Improved and optimized CSS in the Social Icon widget.5 Fix: Resolved a bug in the MailChimp Widget.6 Fix: Fixed controls not working in the Text Marquee Widget.7 Fix: Fixed icon color issue in the Carousel Portfolio Widget.8 New: Added style layouts and scroll animations to the Vertical Timeline Widget.9 New: Added multiple selection and exclude options in the Ajax Live Search Widget.9 - Fix: Improved and optimized CSS in the Social Icon widget. 10 - Fix: Resolved a bug in the MailChimp Widget. 11 - Fix: Fixed controls not working in the Text Marquee Widget. 12 - Fix: Fixed icon color issue in the Carousel Portfolio Widget. 13 - New: Added style layouts and scroll animations to the Vertical Timeline Widget. 14 - New: Added multiple selection and exclude options in the Ajax Live Search Widget. 10 15 11 16 -
xpro-elementor-addons/trunk/readme.txt
r3342913 r3348764 1 1 === 140+ Widgets | Xpro Addons For Elementor - FREE === 2 2 Plugin Name: Xpro Addons For Elementor (140+ Widgets & Free Theme Builder) 3 Version: 1.4.1 73 Version: 1.4.18 4 4 Contributors: Xpro 5 5 Tags: elementor, widgets for elementor, elementor widgets, addons for elementor, woocommerce elementor … … 266 266 == Changelog == 267 267 268 = V 1.4.18 – 22 Aug 2025 269 270 - Fix: Resolved vulnerability in the Info List Widget. 271 272 268 273 = V 1.4.17 – 11 Aug 2025 269 274 270 Fix: Improved and optimized CSS in the Social Icon widget.271 Fix: Resolved a bug in the MailChimp Widget.272 Fix: Fixed controls not working in the Text Marquee Widget.273 Fix: Fixed icon color issue in the Carousel Portfolio Widget.274 New: Added style layouts and scroll animations to the Vertical Timeline Widget.275 New: Added multiple selection and exclude options in the Ajax Live Search Widget.275 - Fix: Improved and optimized CSS in the Social Icon widget. 276 - Fix: Resolved a bug in the MailChimp Widget. 277 - Fix: Fixed controls not working in the Text Marquee Widget. 278 - Fix: Fixed icon color issue in the Carousel Portfolio Widget. 279 - New: Added style layouts and scroll animations to the Vertical Timeline Widget. 280 - New: Added multiple selection and exclude options in the Ajax Live Search Widget. 276 281 277 282 -
xpro-elementor-addons/trunk/widgets/info-list/layout/frontend.php
r3129179 r3348764 46 46 47 47 <div class="xpro-infolist-content"> 48 <?php if ( $item['title'] ) : ?> 49 <<?php echo esc_attr( sanitize_key($item['title_tag']) ); ?> class="xpro-infolist-title"><?php echo esc_html( $item['title'] ); ?></<?php echo esc_attr( sanitize_key($item['title_tag']) ); ?>> 50 <?php endif; ?> 48 <?php if ( $item['title'] ) : 49 50 $html_tag = isset( $item['title_tag'] ) ? strtolower( sanitize_key( $item['title_tag'] ) ) : 'h2'; 51 $allowed_tags = array( 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'div', 'span' ); 52 53 if ( ! in_array( $html_tag, $allowed_tags, true ) ) { 54 $html_tag = 'h2'; 55 } 56 57 ?> 58 <<?php echo esc_attr( $html_tag ); ?> class="xpro-infolist-title"> <?php echo esc_html( $item['title'] ); ?> </<?php echo esc_attr( $html_tag ); ?>> 59 <?php endif; ?> 51 60 <?php if ( $item['description'] ) : ?> 52 61 <p class="xpro-infolist-desc"><?php echo wp_kses_post( $item['description'] ); ?></p> -
xpro-elementor-addons/trunk/xpro-elementor-addons.php
r3342913 r3348764 4 4 * Description: A complete Elementor Addons Pack to enhance your web designing experience. Create amazing websites with 50+ FREE Widgets, Extensions & more. 5 5 * Plugin URI: https://elementor.wpxpro.com/ 6 * Version: 1.4.1 76 * Version: 1.4.18 7 7 * Author: Xpro 8 8 * Author URI: https://www.wpxpro.com/ 9 9 * Developer: Xpro Team 10 10 * Text Domain: xpro-elementor-addons 11 * Elementor tested up to: 3.31. 111 * Elementor tested up to: 3.31.2 12 12 */ 13 13 14 14 defined( 'ABSPATH' ) || die(); 15 15 16 define( 'XPRO_ELEMENTOR_ADDONS_VERSION', '1.4.1 7' );16 define( 'XPRO_ELEMENTOR_ADDONS_VERSION', '1.4.18' ); 17 17 define( 'XPRO_ELEMENTOR_ADDONS__FILE__', __FILE__ ); 18 18 define( 'XPRO_ELEMENTOR_ADDONS_BASE', plugin_basename( __FILE__ ) ); … … 66 66 * @var string The plugin version. 67 67 */ 68 const VERSION = '1.4.1 7';68 const VERSION = '1.4.18'; 69 69 70 70 /**
Note: See TracChangeset
for help on using the changeset viewer.