Plugin Directory

Changeset 3348764


Ignore:
Timestamp:
08/22/2025 05:54:13 PM (6 months ago)
Author:
xpro
Message:

V 1.4.18 – 22 Aug 2025

  • Fix: Resolved vulnerability in the Info List Widget.
Location:
xpro-elementor-addons/trunk
Files:
4 edited

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
    16
    27= V 1.4.17 – 11 Aug 2025
    38
    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.
    1015
    1116
  • xpro-elementor-addons/trunk/readme.txt

    r3342913 r3348764  
    11=== 140+ Widgets | Xpro Addons For Elementor - FREE ===
    22Plugin Name: Xpro Addons For Elementor (140+ Widgets & Free Theme Builder)
    3 Version: 1.4.17
     3Version: 1.4.18
    44Contributors: Xpro
    55Tags: elementor, widgets for elementor, elementor widgets, addons for elementor, woocommerce elementor
     
    266266== Changelog ==
    267267
     268= V 1.4.18 – 22 Aug 2025
     269
     270- Fix: Resolved vulnerability in the Info List Widget.
     271
     272
    268273= V 1.4.17 – 11 Aug 2025
    269274
    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.
    276281
    277282
  • xpro-elementor-addons/trunk/widgets/info-list/layout/frontend.php

    r3129179 r3348764  
    4646
    4747            <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; ?>
    5160                <?php if ( $item['description'] ) : ?>
    5261                    <p class="xpro-infolist-desc"><?php echo wp_kses_post( $item['description'] ); ?></p>
  • xpro-elementor-addons/trunk/xpro-elementor-addons.php

    r3342913 r3348764  
    44 * Description: A complete Elementor Addons Pack to enhance your web designing experience. Create amazing websites with 50+ FREE Widgets, Extensions & more.
    55 * Plugin URI:  https://elementor.wpxpro.com/
    6  * Version:     1.4.17
     6 * Version:     1.4.18
    77 * Author:      Xpro
    88 * Author URI:  https://www.wpxpro.com/
    99 * Developer:   Xpro Team
    1010 * Text Domain: xpro-elementor-addons
    11  * Elementor tested up to: 3.31.1
     11 * Elementor tested up to: 3.31.2
    1212 */
    1313
    1414defined( 'ABSPATH' ) || die();
    1515
    16 define( 'XPRO_ELEMENTOR_ADDONS_VERSION', '1.4.17' );
     16define( 'XPRO_ELEMENTOR_ADDONS_VERSION', '1.4.18' );
    1717define( 'XPRO_ELEMENTOR_ADDONS__FILE__', __FILE__ );
    1818define( 'XPRO_ELEMENTOR_ADDONS_BASE', plugin_basename( __FILE__ ) );
     
    6666     * @var string The plugin version.
    6767     */
    68     const VERSION = '1.4.17';
     68    const VERSION = '1.4.18';
    6969
    7070    /**
Note: See TracChangeset for help on using the changeset viewer.