Version Description
24/11/2022 =
Fixed: EA Post Grid | Excerpt length change not working properly
Few minor bug fixes & improvements
Download this release
Release Info
Developer | wpdevteam |
Plugin | Elementor Essential Addons |
Version | 5.4.4 |
Comparing to | |
See all releases |
Code changes from version 5.4.3 to 5.4.4
- essential_adons_elementor.php +2 -2
- includes/Classes/Helper.php +0 -24
- includes/Classes/Migration.php +8 -9
- includes/Classes/WPDeveloper_Setup_Wizard.php +1 -1
- includes/Template/Post-Grid/default.php +3 -3
- includes/Traits/Admin.php +20 -1
- includes/Traits/Helper.php +2 -2
- includes/templates/admin/general.php +1 -1
- languages/essential-addons-for-elementor-lite.pot +6 -6
- readme.txt +20 -15
essential_adons_elementor.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Description: The Essential plugin you install after Elementor! Packed with 40+ stunning free elements including Advanced Data Table, Event Calendar, Filterable Gallery, WooCommerce, and many more.
|
5 |
* Plugin URI: https://essential-addons.com/elementor/
|
6 |
* Author: WPDeveloper
|
7 |
-
* Version: 5.4.
|
8 |
* Author URI: https://wpdeveloper.com/
|
9 |
* Text Domain: essential-addons-for-elementor-lite
|
10 |
* Domain Path: /languages
|
@@ -27,7 +27,7 @@ define('EAEL_PLUGIN_FILE', __FILE__);
|
|
27 |
define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
28 |
define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
|
29 |
define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
|
30 |
-
define('EAEL_PLUGIN_VERSION', '5.4.
|
31 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
32 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
33 |
/**
|
4 |
* Description: The Essential plugin you install after Elementor! Packed with 40+ stunning free elements including Advanced Data Table, Event Calendar, Filterable Gallery, WooCommerce, and many more.
|
5 |
* Plugin URI: https://essential-addons.com/elementor/
|
6 |
* Author: WPDeveloper
|
7 |
+
* Version: 5.4.4
|
8 |
* Author URI: https://wpdeveloper.com/
|
9 |
* Text Domain: essential-addons-for-elementor-lite
|
10 |
* Domain Path: /languages
|
27 |
define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
28 |
define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
|
29 |
define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
|
30 |
+
define('EAEL_PLUGIN_VERSION', '5.4.4');
|
31 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
32 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
33 |
/**
|
includes/Classes/Helper.php
CHANGED
@@ -1322,28 +1322,4 @@ class Helper
|
|
1322 |
return 'AND';
|
1323 |
}
|
1324 |
}
|
1325 |
-
|
1326 |
-
/**
|
1327 |
-
* Remove words as per given length from a sentence.
|
1328 |
-
*
|
1329 |
-
* @param string $text
|
1330 |
-
* @param integer $length
|
1331 |
-
*
|
1332 |
-
* @return string
|
1333 |
-
*/
|
1334 |
-
public static function eael_trim_words( $text, $length, $more = null ) {
|
1335 |
-
if ( null === $more ) {
|
1336 |
-
$more = __( '…' );
|
1337 |
-
}
|
1338 |
-
|
1339 |
-
if ( $length && str_word_count( $text ) > $length ) {
|
1340 |
-
$text = explode( ' ', $text, $length + 1 );
|
1341 |
-
unset( $text[ $length ] );
|
1342 |
-
$text = implode( ' ', $text );
|
1343 |
-
|
1344 |
-
$text = $text . $more;
|
1345 |
-
}
|
1346 |
-
|
1347 |
-
return $text;
|
1348 |
-
}
|
1349 |
}
|
1322 |
return 'AND';
|
1323 |
}
|
1324 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1325 |
}
|
includes/Classes/Migration.php
CHANGED
@@ -44,15 +44,14 @@ class Migration
|
|
44 |
*
|
45 |
* @since 3.0.0
|
46 |
*/
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
}
|
56 |
|
57 |
/**
|
58 |
* Plugin migrator
|
44 |
*
|
45 |
* @since 3.0.0
|
46 |
*/
|
47 |
+
public function plugin_upgrade_hook( $upgrader_object, $options ) {
|
48 |
+
if ( $options['action'] === 'update' && $options['type'] === 'plugin' ) {
|
49 |
+
if ( ( isset( $options['plugins'] ) && in_array( EAEL_PLUGIN_BASENAME, $options['plugins'] ) ) || ( isset( $options['plugin'] ) && $options['plugin'] === EAEL_PLUGIN_BASENAME ) ) {
|
50 |
+
// remove old cache files
|
51 |
+
$this->empty_dir( EAEL_ASSET_PATH );
|
52 |
+
}
|
53 |
+
}
|
54 |
+
}
|
|
|
55 |
|
56 |
/**
|
57 |
* Plugin migrator
|
includes/Classes/WPDeveloper_Setup_Wizard.php
CHANGED
@@ -327,7 +327,7 @@ class WPDeveloper_Setup_Wizard {
|
|
327 |
alt="<?php _e( 'Logo', 'essential-addons-for-elementor-lite' ) ?>">
|
328 |
</div>
|
329 |
<div class="eael-quick-setup-title">
|
330 |
-
<?php printf( __( '%s <span class="eael-quick-setup-highlighted-red">%s</span> %s', 'essential-addons-for-elementor-lite' ), 'Unlock', '
|
331 |
Templately.' ); ?>
|
332 |
</div>
|
333 |
<div class="eael-quick-setup-text">
|
327 |
alt="<?php _e( 'Logo', 'essential-addons-for-elementor-lite' ) ?>">
|
328 |
</div>
|
329 |
<div class="eael-quick-setup-title">
|
330 |
+
<?php printf( __( '%s <span class="eael-quick-setup-highlighted-red">%s</span> %s', 'essential-addons-for-elementor-lite' ), 'Unlock', '3000+', 'Ready Templates Built With Elementor & Essential Addons From
|
331 |
Templately.' ); ?>
|
332 |
</div>
|
333 |
<div class="eael-quick-setup-text">
|
includes/Template/Post-Grid/default.php
CHANGED
@@ -93,7 +93,7 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
93 |
if (empty($settings['eael_excerpt_length'])) {
|
94 |
echo '<p>' . strip_shortcodes(get_the_excerpt() ? get_the_excerpt() : get_the_content()) . '</p>';
|
95 |
} else {
|
96 |
-
echo '<p>' .
|
97 |
}
|
98 |
}
|
99 |
|
@@ -235,7 +235,7 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
235 |
if (empty($settings['eael_excerpt_length'])) {
|
236 |
echo '<p>' . strip_shortcodes(get_the_excerpt() ? get_the_excerpt() : get_the_content()) . '</p>';
|
237 |
} else {
|
238 |
-
echo '<p>' .
|
239 |
}
|
240 |
}
|
241 |
|
@@ -329,7 +329,7 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
329 |
if (empty($settings['eael_excerpt_length'])) {
|
330 |
echo '<p>' . strip_shortcodes(get_the_excerpt() ? get_the_excerpt() : get_the_content()) . '</p>';
|
331 |
} else {
|
332 |
-
echo '<p>' .
|
333 |
}
|
334 |
}
|
335 |
|
93 |
if (empty($settings['eael_excerpt_length'])) {
|
94 |
echo '<p>' . strip_shortcodes(get_the_excerpt() ? get_the_excerpt() : get_the_content()) . '</p>';
|
95 |
} else {
|
96 |
+
echo '<p>' . wp_trim_words( strip_shortcodes(get_the_excerpt() ? get_the_excerpt() : get_the_content()), $settings['eael_excerpt_length'], $settings['excerpt_expanison_indicator'] ) . '</p>';
|
97 |
}
|
98 |
}
|
99 |
|
235 |
if (empty($settings['eael_excerpt_length'])) {
|
236 |
echo '<p>' . strip_shortcodes(get_the_excerpt() ? get_the_excerpt() : get_the_content()) . '</p>';
|
237 |
} else {
|
238 |
+
echo '<p>' . wp_trim_words( strip_shortcodes(get_the_excerpt() ? get_the_excerpt() : get_the_content()), $settings['eael_excerpt_length'], $settings['excerpt_expanison_indicator']) . '</p>';
|
239 |
}
|
240 |
}
|
241 |
|
329 |
if (empty($settings['eael_excerpt_length'])) {
|
330 |
echo '<p>' . strip_shortcodes(get_the_excerpt() ? get_the_excerpt() : get_the_content()) . '</p>';
|
331 |
} else {
|
332 |
+
echo '<p>' . wp_trim_words( strip_shortcodes(get_the_excerpt() ? get_the_excerpt() : get_the_content()), $settings['eael_excerpt_length'], $settings['excerpt_expanison_indicator']) . '</p>';
|
333 |
}
|
334 |
}
|
335 |
|
includes/Traits/Admin.php
CHANGED
@@ -629,11 +629,30 @@ trait Admin {
|
|
629 |
.eael-black-friday-notice * {
|
630 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
631 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
632 |
</style>
|
633 |
<div class="wpnotice-wrapper notice notice-info is-dismissible eael-black-friday-notice">
|
634 |
<div class="wpnotice-content-wrapper">
|
|
|
|
|
|
|
635 |
<div class="eael-black-friday-optin">
|
636 |
-
<p><?php _e( '<strong>🎉 Black Friday Exclusive:</strong> SAVE up to 40% & access to Essential Addons Pro features', 'essential-addons-for-elementor-lite' ); ?>
|
637 |
<a href="https://essential-addons.com/elementor/#pricing" target="_blank"
|
638 |
class="button-primary"><?php _e( 'Grab The Offer', 'essential-addons-for-elementor-lite' ); ?></a>
|
639 |
</p>
|
629 |
.eael-black-friday-notice * {
|
630 |
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
631 |
}
|
632 |
+
.eael-black-friday-notice {
|
633 |
+
padding: 0;
|
634 |
+
border-left-color: #6200ee;
|
635 |
+
}
|
636 |
+
.eael-black-friday-notice .wpnotice-content-wrapper {
|
637 |
+
display: flex;
|
638 |
+
}
|
639 |
+
.eael-black-friday-notice .wpnotice-content-wrapper .eael-black-friday-optin-logo {
|
640 |
+
width: 50px;
|
641 |
+
padding: 10px 0 0;
|
642 |
+
text-align: center;
|
643 |
+
background: rgba(98, 0, 238, .1);
|
644 |
+
}
|
645 |
+
.eael-black-friday-notice .wpnotice-content-wrapper .eael-black-friday-optin {
|
646 |
+
padding-left: 10px;
|
647 |
+
}
|
648 |
</style>
|
649 |
<div class="wpnotice-wrapper notice notice-info is-dismissible eael-black-friday-notice">
|
650 |
<div class="wpnotice-content-wrapper">
|
651 |
+
<div class="eael-black-friday-optin-logo">
|
652 |
+
<img src="<?php echo esc_url( EAEL_PLUGIN_URL . 'assets/admin/images/icon-ea-logo.svg' ); ?>" width="25" alt="">
|
653 |
+
</div>
|
654 |
<div class="eael-black-friday-optin">
|
655 |
+
<p><?php _e( '<strong>🎉 Black Friday Exclusive:</strong> SAVE up to 40% & access to Essential Addons Pro features.', 'essential-addons-for-elementor-lite' ); ?>
|
656 |
<a href="https://essential-addons.com/elementor/#pricing" target="_blank"
|
657 |
class="button-primary"><?php _e( 'Grab The Offer', 'essential-addons-for-elementor-lite' ); ?></a>
|
658 |
</p>
|
includes/Traits/Helper.php
CHANGED
@@ -292,7 +292,7 @@ trait Helper
|
|
292 |
<img src="<?php echo esc_url( EAEL_PLUGIN_URL . 'assets/admin/images/templately/logo.svg' ); ?>" alt="">
|
293 |
</div>
|
294 |
<ul class="eael-promo-temp__feature__list">
|
295 |
-
<li><?php _e('
|
296 |
<li><?php _e('Supports Elementor & Gutenberg','essential-addons-for-elementor-lite'); ?></li>
|
297 |
<li><?php _e('Powering up 200,000+ Websites','essential-addons-for-elementor-lite'); ?></li>
|
298 |
<li><?php _e('Cloud Collaboration with Team','essential-addons-for-elementor-lite'); ?></li>
|
@@ -583,7 +583,7 @@ trait Helper
|
|
583 |
<img src="<?php echo esc_url( $eb_promo_img2 ); ?>" alt="">
|
584 |
</div>
|
585 |
<div class="eael-gb-eb-content-info">
|
586 |
-
<h3><?php esc_html_e( '
|
587 |
<p><?php esc_html_e( 'Create & design your WordPress websites just the way you want with more than 35 amazing, ready blocks from Essential Blocks for Gutenberg.', 'essential-addons-for-elementor-lite' ) ?></p>
|
588 |
</div>
|
589 |
</div>
|
292 |
<img src="<?php echo esc_url( EAEL_PLUGIN_URL . 'assets/admin/images/templately/logo.svg' ); ?>" alt="">
|
293 |
</div>
|
294 |
<ul class="eael-promo-temp__feature__list">
|
295 |
+
<li><?php _e('3,000+ Stunning Templates','essential-addons-for-elementor-lite'); ?></li>
|
296 |
<li><?php _e('Supports Elementor & Gutenberg','essential-addons-for-elementor-lite'); ?></li>
|
297 |
<li><?php _e('Powering up 200,000+ Websites','essential-addons-for-elementor-lite'); ?></li>
|
298 |
<li><?php _e('Cloud Collaboration with Team','essential-addons-for-elementor-lite'); ?></li>
|
583 |
<img src="<?php echo esc_url( $eb_promo_img2 ); ?>" alt="">
|
584 |
</div>
|
585 |
<div class="eael-gb-eb-content-info">
|
586 |
+
<h3><?php esc_html_e( '40+ Amazing Gutenberg Blocks', 'essential-addons-for-elementor-lite' ); ?></h3>
|
587 |
<p><?php esc_html_e( 'Create & design your WordPress websites just the way you want with more than 35 amazing, ready blocks from Essential Blocks for Gutenberg.', 'essential-addons-for-elementor-lite' ) ?></p>
|
588 |
</div>
|
589 |
</div>
|
includes/templates/admin/general.php
CHANGED
@@ -17,7 +17,7 @@
|
|
17 |
<img src="<?php echo esc_url( EAEL_PLUGIN_URL . 'assets/admin/images/quick-setup/templately-logo.svg' ); ?>"
|
18 |
alt="">
|
19 |
</div>
|
20 |
-
<h2>Unlock <span class="color__secondary">
|
21 |
Essential
|
22 |
Addons From Templately.','essential-addons-for-elementor-lite'); ?></h2>
|
23 |
<p><?php _e('Get Access to amazing features and boost your Elementor page building experience with Templately','essential-addons-for-elementor-lite'); ?>
|
17 |
<img src="<?php echo esc_url( EAEL_PLUGIN_URL . 'assets/admin/images/quick-setup/templately-logo.svg' ); ?>"
|
18 |
alt="">
|
19 |
</div>
|
20 |
+
<h2>Unlock <span class="color__secondary">3000+</span> <?php _e('Ready Templates Built With Elementor &
|
21 |
Essential
|
22 |
Addons From Templately.','essential-addons-for-elementor-lite'); ?></h2>
|
23 |
<p><?php _e('Get Access to amazing features and boost your Elementor page building experience with Templately','essential-addons-for-elementor-lite'); ?>
|
languages/essential-addons-for-elementor-lite.pot
CHANGED
@@ -6,7 +6,7 @@ msgstr ""
|
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
-
"POT-Creation-Date: 2022-11-
|
10 |
"X-Poedit-Basepath: ..\n"
|
11 |
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
12 |
"X-Poedit-SearchPath-0: .\n"
|
@@ -8374,11 +8374,11 @@ msgstr ""
|
|
8374 |
msgid "You are not allowed to do this action"
|
8375 |
msgstr ""
|
8376 |
|
8377 |
-
#: ../includes/Traits/Admin.php:
|
8378 |
-
msgid "<strong>🎉 Black Friday Exclusive:</strong> SAVE up to 40% & access to Essential Addons Pro features"
|
8379 |
msgstr ""
|
8380 |
|
8381 |
-
#: ../includes/Traits/Admin.php:
|
8382 |
msgid "Grab The Offer"
|
8383 |
msgstr ""
|
8384 |
|
@@ -8783,7 +8783,7 @@ msgid "Essential Addons for Elementor"
|
|
8783 |
msgstr ""
|
8784 |
|
8785 |
#: ../includes/Traits/Helper.php:295
|
8786 |
-
msgid "
|
8787 |
msgstr ""
|
8788 |
|
8789 |
#: ../includes/Traits/Helper.php:296
|
@@ -8835,7 +8835,7 @@ msgid "If you like Essential Addons for Elementor, check out Essential Blocks, t
|
|
8835 |
msgstr ""
|
8836 |
|
8837 |
#: ../includes/Traits/Helper.php:586
|
8838 |
-
msgid "
|
8839 |
msgstr ""
|
8840 |
|
8841 |
#: ../includes/Traits/Helper.php:587
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
9 |
+
"POT-Creation-Date: 2022-11-24 06:58+0000\n"
|
10 |
"X-Poedit-Basepath: ..\n"
|
11 |
"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
|
12 |
"X-Poedit-SearchPath-0: .\n"
|
8374 |
msgid "You are not allowed to do this action"
|
8375 |
msgstr ""
|
8376 |
|
8377 |
+
#: ../includes/Traits/Admin.php:655
|
8378 |
+
msgid "<strong>🎉 Black Friday Exclusive:</strong> SAVE up to 40% & access to Essential Addons Pro features."
|
8379 |
msgstr ""
|
8380 |
|
8381 |
+
#: ../includes/Traits/Admin.php:657
|
8382 |
msgid "Grab The Offer"
|
8383 |
msgstr ""
|
8384 |
|
8783 |
msgstr ""
|
8784 |
|
8785 |
#: ../includes/Traits/Helper.php:295
|
8786 |
+
msgid "3,000+ Stunning Templates"
|
8787 |
msgstr ""
|
8788 |
|
8789 |
#: ../includes/Traits/Helper.php:296
|
8835 |
msgstr ""
|
8836 |
|
8837 |
#: ../includes/Traits/Helper.php:586
|
8838 |
+
msgid "40+ Amazing Gutenberg Blocks"
|
8839 |
msgstr ""
|
8840 |
|
8841 |
#: ../includes/Traits/Helper.php:587
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: elementor, elements, addons, elementor addons, elementor widget, elementor
|
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 6.1
|
6 |
Requires PHP: 7.0
|
7 |
-
Stable tag: 5.4.
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
@@ -202,7 +202,7 @@ Note : This plugin works with Elementor. Make sure you have [Elementor](https://
|
|
202 |
|
203 |
1. Upload the plugin folder to the `/wp-content/plugins/` directory, or install the plugin through the WordPress plugins screen directly.
|
204 |
2. Activate the plugin through the 'Plugins' screen in WordPress
|
205 |
-
3. You can type "EA" on your element tabs within Elementor editor and all the
|
206 |
4. Also you can see them under the category "Essential Addons for Elementor" on your element/widget list.
|
207 |
|
208 |
== Frequently Asked Questions ==
|
@@ -242,6 +242,11 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
242 |
|
243 |
== Changelog ==
|
244 |
|
|
|
|
|
|
|
|
|
|
|
245 |
= 5.4.3 - 22/11/2022 =
|
246 |
|
247 |
- Fixed: EA Post Grid | HTML Tags not working in excerpt view
|
@@ -597,19 +602,19 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
597 |
- Fixed: EA Gravity Forms | Form label styling not properly
|
598 |
- Fixed: EA Event Calendar | Events colors not changing with global color
|
599 |
- Fixed: EA Call to Action | Button URL Custom Attributes not working correctly
|
600 |
-
- Fixed: Missing Control icons inside
|
601 |
- Fixed: EA Simple Menu | Hamburger menu center option not working
|
602 |
- Fixed: EA Simple Menu | Active Page being shown on Responsive Devices despite being disabled
|
603 |
- Few minor bug fix & improvements
|
604 |
|
605 |
= 4.9.3 - 29/09/2021 =
|
606 |
|
607 |
-
- Fixed: EA
|
608 |
- Few minor bug fix & improvements
|
609 |
|
610 |
= 4.9.2 - 26/09/2021 =
|
611 |
|
612 |
-
- Fixed: EA
|
613 |
- Fixed: EA Post Grid | Load More button not working with Random sorting
|
614 |
- Fixed: EA Advanced Data Table | removed data reappearing
|
615 |
- Fixed: EA Feature List | showing warning in browser console
|
@@ -1213,7 +1218,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
1213 |
|
1214 |
= 3.3.3 - 08/10/2019 =
|
1215 |
- Added: Team Member content card height control
|
1216 |
-
- Added:
|
1217 |
- Fixed: SVG upload issue on all icon manager
|
1218 |
- Fixed: Post Elements exclude control missing
|
1219 |
- Fixed: Data Table header icon top position issue
|
@@ -1226,7 +1231,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
1226 |
- Added : Filterable Gallery new layout (Search & Filter)
|
1227 |
- Added: Post elements excerpt expanison indicator option field
|
1228 |
- Fixed: Post Grid hover not working
|
1229 |
-
- Fixed:
|
1230 |
- Few minor bugfix and improvements
|
1231 |
|
1232 |
= 3.3.1 - 18/09/2019 =
|
@@ -1235,7 +1240,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
1235 |
|
1236 |
= 3.3.0 - 15/09/2019 =
|
1237 |
- Improved : All post queries optimized to improve the load time and memory usage
|
1238 |
-
- Improved : Icon Manager
|
1239 |
- Added : Content Timeline left and right layout
|
1240 |
- Fixed : Load More button overlapping issue
|
1241 |
- Fixed : Team Member icon issue
|
@@ -1307,7 +1312,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
1307 |
- Few minor bugfix and improvements
|
1308 |
|
1309 |
= 3.0.0 - 22/05/2019 =
|
1310 |
-
-
|
1311 |
- Minimized dependencies to keep the plugin lighter
|
1312 |
- Lots of bugfix and improvements
|
1313 |
|
@@ -1318,7 +1323,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
1318 |
|
1319 |
= 2.10.2 - 04/04/2019 =
|
1320 |
- Feature List element improved
|
1321 |
-
- Dynamic file
|
1322 |
- Nexted dynamic templates design issue fixed
|
1323 |
- Few minor bugfix and improvements
|
1324 |
|
@@ -1330,7 +1335,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
1330 |
|
1331 |
= 2.10.0 - 27/03/2019 =
|
1332 |
|
1333 |
-
-
|
1334 |
- Only one minified JS and one CSS file (if required for the widget) will be used on the page where EA element is being used
|
1335 |
- No extra asset will be loaded if you don't use EA on any page
|
1336 |
- Massive performance improved minimizing the dependencies
|
@@ -1379,7 +1384,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
1379 |
- Added : Section Particles effect
|
1380 |
- Added: Filterable gallery capability to remove All label
|
1381 |
- Enhancement : Product Grid element with more features
|
1382 |
-
- Fixed: invalid calc
|
1383 |
- Few minor bugfix and improvements
|
1384 |
|
1385 |
= 2.8.7 - 24/12/2018 =
|
@@ -1417,7 +1422,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
1417 |
= 2.8.2 - 23/10/2018 =
|
1418 |
|
1419 |
- Filterable Gallery card hover effect issue fixed
|
1420 |
-
-
|
1421 |
- Few minor bugfix and improvements
|
1422 |
|
1423 |
= 2.8.1 - 18/10/2018 =
|
@@ -1483,7 +1488,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
1483 |
|
1484 |
= 2.7.4 - 23/07/2018 =
|
1485 |
|
1486 |
-
- (Make sure to clear cache
|
1487 |
- Button elements improved
|
1488 |
- Fancy Text element improved
|
1489 |
- Image Accordion improved
|
@@ -1653,7 +1658,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
1653 |
|
1654 |
= 1.0.0 - 20/07/2017 =
|
1655 |
|
1656 |
-
Initial stable
|
1657 |
|
1658 |
|
1659 |
== Upgrade Notice ==
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 6.1
|
6 |
Requires PHP: 7.0
|
7 |
+
Stable tag: 5.4.4
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
202 |
|
203 |
1. Upload the plugin folder to the `/wp-content/plugins/` directory, or install the plugin through the WordPress plugins screen directly.
|
204 |
2. Activate the plugin through the 'Plugins' screen in WordPress
|
205 |
+
3. You can type "EA" on your element tabs within Elementor editor and all the available elements will appear.
|
206 |
4. Also you can see them under the category "Essential Addons for Elementor" on your element/widget list.
|
207 |
|
208 |
== Frequently Asked Questions ==
|
242 |
|
243 |
== Changelog ==
|
244 |
|
245 |
+
= 5.4.4 - 24/11/2022 =
|
246 |
+
|
247 |
+
- Fixed: EA Post Grid | Excerpt length change not working properly
|
248 |
+
- Few minor bug fixes & improvements
|
249 |
+
|
250 |
= 5.4.3 - 22/11/2022 =
|
251 |
|
252 |
- Fixed: EA Post Grid | HTML Tags not working in excerpt view
|
602 |
- Fixed: EA Gravity Forms | Form label styling not properly
|
603 |
- Fixed: EA Event Calendar | Events colors not changing with global color
|
604 |
- Fixed: EA Call to Action | Button URL Custom Attributes not working correctly
|
605 |
+
- Fixed: Missing Control icons inside Elementor panel
|
606 |
- Fixed: EA Simple Menu | Hamburger menu center option not working
|
607 |
- Fixed: EA Simple Menu | Active Page being shown on Responsive Devices despite being disabled
|
608 |
- Few minor bug fix & improvements
|
609 |
|
610 |
= 4.9.3 - 29/09/2021 =
|
611 |
|
612 |
+
- Fixed: EA Filterable Gallery | Video Gallery popup not working
|
613 |
- Few minor bug fix & improvements
|
614 |
|
615 |
= 4.9.2 - 26/09/2021 =
|
616 |
|
617 |
+
- Fixed: EA Filterable Gallery | Images not displaying under each filter until Load More button is hit
|
618 |
- Fixed: EA Post Grid | Load More button not working with Random sorting
|
619 |
- Fixed: EA Advanced Data Table | removed data reappearing
|
620 |
- Fixed: EA Feature List | showing warning in browser console
|
1218 |
|
1219 |
= 3.3.3 - 08/10/2019 =
|
1220 |
- Added: Team Member content card height control
|
1221 |
+
- Added: Tooltip icon size control
|
1222 |
- Fixed: SVG upload issue on all icon manager
|
1223 |
- Fixed: Post Elements exclude control missing
|
1224 |
- Fixed: Data Table header icon top position issue
|
1231 |
- Added : Filterable Gallery new layout (Search & Filter)
|
1232 |
- Added: Post elements excerpt expanison indicator option field
|
1233 |
- Fixed: Post Grid hover not working
|
1234 |
+
- Fixed: Creative Button options not showing
|
1235 |
- Few minor bugfix and improvements
|
1236 |
|
1237 |
= 3.3.1 - 18/09/2019 =
|
1240 |
|
1241 |
= 3.3.0 - 15/09/2019 =
|
1242 |
- Improved : All post queries optimized to improve the load time and memory usage
|
1243 |
+
- Improved : Icon Manager optimized for better performance
|
1244 |
- Added : Content Timeline left and right layout
|
1245 |
- Fixed : Load More button overlapping issue
|
1246 |
- Fixed : Team Member icon issue
|
1312 |
- Few minor bugfix and improvements
|
1313 |
|
1314 |
= 3.0.0 - 22/05/2019 =
|
1315 |
+
- Refactored code for better performance
|
1316 |
- Minimized dependencies to keep the plugin lighter
|
1317 |
- Lots of bugfix and improvements
|
1318 |
|
1323 |
|
1324 |
= 2.10.2 - 04/04/2019 =
|
1325 |
- Feature List element improved
|
1326 |
+
- Dynamic file regenerating tools added
|
1327 |
- Nexted dynamic templates design issue fixed
|
1328 |
- Few minor bugfix and improvements
|
1329 |
|
1335 |
|
1336 |
= 2.10.0 - 27/03/2019 =
|
1337 |
|
1338 |
+
- Refactored plugin structure for improved performance
|
1339 |
- Only one minified JS and one CSS file (if required for the widget) will be used on the page where EA element is being used
|
1340 |
- No extra asset will be loaded if you don't use EA on any page
|
1341 |
- Massive performance improved minimizing the dependencies
|
1384 |
- Added : Section Particles effect
|
1385 |
- Added: Filterable gallery capability to remove All label
|
1386 |
- Enhancement : Product Grid element with more features
|
1387 |
+
- Fixed: invalid calc function in progressbar
|
1388 |
- Few minor bugfix and improvements
|
1389 |
|
1390 |
= 2.8.7 - 24/12/2018 =
|
1422 |
= 2.8.2 - 23/10/2018 =
|
1423 |
|
1424 |
- Filterable Gallery card hover effect issue fixed
|
1425 |
+
- Flipbox image styling issue fixed
|
1426 |
- Few minor bugfix and improvements
|
1427 |
|
1428 |
= 2.8.1 - 18/10/2018 =
|
1488 |
|
1489 |
= 2.7.4 - 23/07/2018 =
|
1490 |
|
1491 |
+
- (Make sure to clear cache and hard refresh the page after update)
|
1492 |
- Button elements improved
|
1493 |
- Fancy Text element improved
|
1494 |
- Image Accordion improved
|
1658 |
|
1659 |
= 1.0.0 - 20/07/2017 =
|
1660 |
|
1661 |
+
Initial stable release
|
1662 |
|
1663 |
|
1664 |
== Upgrade Notice ==
|