ElementsKit Elementor addons (Header Footer Builder, Mega Menu Builder, Free Elementor Widgets & Elementor Templates Library) - Version 2.5.9

Version Description

Wordpress 4.9+

Download this release

Release Info

Developer wpmet
Plugin Icon wp plugin ElementsKit Elementor addons (Header Footer Builder, Mega Menu Builder, Free Elementor Widgets & Elementor Templates Library)
Version 2.5.9
Comparing to
See all releases

Code changes from version 2.5.8 to 2.5.9

elementskit-lite.php CHANGED
@@ -9,7 +9,7 @@ defined( 'ABSPATH' ) || exit;
9
  * Description: The most advanced addons for Elementor with tons of widgets, Header builder, Footer builder, Mega menu builder, layout pack and powerful custom controls.
10
  * Plugin URI: https://products.wpmet.com/elementskit
11
  * Author: Wpmet
12
- * Version: 2.5.8
13
  * Author URI: https://wpmet.com/
14
  *
15
  * Text Domain: elementskit-lite
@@ -31,7 +31,7 @@ final class ElementsKit_Lite{
31
  * @var string The plugin version.
32
  */
33
  static function version(){
34
- return '2.5.8';
35
  }
36
 
37
  /**
9
  * Description: The most advanced addons for Elementor with tons of widgets, Header builder, Footer builder, Mega menu builder, layout pack and powerful custom controls.
10
  * Plugin URI: https://products.wpmet.com/elementskit
11
  * Author: Wpmet
12
+ * Version: 2.5.9
13
  * Author URI: https://wpmet.com/
14
  *
15
  * Text Domain: elementskit-lite
31
  * @var string The plugin version.
32
  */
33
  static function version(){
34
+ return '2.5.9';
35
  }
36
 
37
  /**
languages/elementskit-lite.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the ElementsKit Lite package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: ElementsKit Lite 2.5.8\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/elementskit-lite\n"
7
- "POT-Creation-Date: 2022-05-10 09:25:50+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
2
  # This file is distributed under the same license as the ElementsKit Lite package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: ElementsKit Lite 2.5.9\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/elementskit-lite\n"
7
+ "POT-Creation-Date: 2022-05-10 10:53:25+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=utf-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Contributors: Ataurr, wpmet, emranio, easin55474
4
  Tags: elementor addons, mega menu builder, header footer builder, elementor widgets, Accordion tab, elementor modules, page builder addons, elementor addon, elementor widget, addons
5
  Requires at least: 5.0
6
  Tested up to: 5.9
7
- Stable tag: 2.5.8
8
  Requires PHP: 7.0
9
  License: GPLv3 or later
10
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
@@ -412,8 +412,9 @@ Do you want to integrate the Facebook Messenger chat-head to any of your web pag
412
  Start using the Facebook Messenger module chat-head by providing the Page ID, choosing any color, logged in user greeting, and logged out user greeting. You can also show your visitors a dialogue box if you wish to. However, make sure that your domain is whitelisted on the page you’re linking to.
413
 
414
  == Changelog ==
415
- Version: 2.5.8 (2022-05-10)
416
- Fixed: Missing scape functions.
 
417
 
418
  Version: 2.5.7 (2022-04-25)
419
  Fixed: Advance Tab widget issue.
4
  Tags: elementor addons, mega menu builder, header footer builder, elementor widgets, Accordion tab, elementor modules, page builder addons, elementor addon, elementor widget, addons
5
  Requires at least: 5.0
6
  Tested up to: 5.9
7
+ Stable tag: 2.5.9
8
  Requires PHP: 7.0
9
  License: GPLv3 or later
10
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
412
  Start using the Facebook Messenger module chat-head by providing the Page ID, choosing any color, logged in user greeting, and logged out user greeting. You can also show your visitors a dialogue box if you wish to. However, make sure that your domain is whitelisted on the page you’re linking to.
413
 
414
  == Changelog ==
415
+ Version: 2.5.9 (2022-05-10)
416
+ Fixed: Missing HTML scape functions.
417
+ Fixed: Escaping issue in the Heading widget.
418
 
419
  Version: 2.5.7 (2022-04-25)
420
  Fixed: Advance Tab widget issue.
widgets/heading/heading.php CHANGED
@@ -1344,7 +1344,7 @@ class ElementsKit_Widget_Heading extends Widget_Base {
1344
  echo ($ekit_heading_seperator_position == 'before') ? $seperator : '';
1345
  if(!empty($ekit_heading_title)):
1346
  echo ('<'.$title_tag.' class="ekit-heading--title elementskit-section-title '.esc_attr($title_text_fill.''.$title_border).'">
1347
- '.esc_html($ekit_title).'
1348
  </'.$title_tag.'>');
1349
  endif;
1350
 
1344
  echo ($ekit_heading_seperator_position == 'before') ? $seperator : '';
1345
  if(!empty($ekit_heading_title)):
1346
  echo ('<'.$title_tag.' class="ekit-heading--title elementskit-section-title '.esc_attr($title_text_fill.''.$title_border).'">
1347
+ '.\ElementsKit_Lite\Utils::kses($ekit_title).'
1348
  </'.$title_tag.'>');
1349
  endif;
1350