Version Description
15/06/2022 =
Fixed: EA Info Box | HTML tag not working inside Infobox Title
Fixed: EA Flip Box |
<div>
tag being closed incorrectlyFew minor bug fixes & improvements
Download this release
Release Info
Developer | priyomukul |
Plugin | Elementor Essential Addons |
Version | 5.1.6 |
Comparing to | |
See all releases |
Code changes from version 5.1.5 to 5.1.6
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.1.
|
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.1.
|
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.1.6
|
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.1.6');
|
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
@@ -1172,6 +1172,11 @@ class Helper
|
|
1172 |
'id' => [],
|
1173 |
'style' => [],
|
1174 |
],
|
|
|
|
|
|
|
|
|
|
|
1175 |
];
|
1176 |
}
|
1177 |
|
1172 |
'id' => [],
|
1173 |
'style' => [],
|
1174 |
],
|
1175 |
+
'center' => [
|
1176 |
+
'class' => [],
|
1177 |
+
'id' => [],
|
1178 |
+
'style' => [],
|
1179 |
+
],
|
1180 |
];
|
1181 |
}
|
1182 |
|
includes/Elements/Flip_Box.php
CHANGED
@@ -1579,7 +1579,6 @@ class Flip_Box extends Widget_Base
|
|
1579 |
} ?>
|
1580 |
</div>
|
1581 |
<?php } ?>
|
1582 |
-
>
|
1583 |
<?php if ( !empty( $settings['eael_flipbox_back_title'] ) ): ?>
|
1584 |
<<?php echo $flipbox_if_html_title_tag, ' ', $this->get_render_attribute_string('flipbox-title-container'); ?>><?php echo esc_html__($settings['eael_flipbox_back_title'], 'essential-addons-for-elementor-lite'); ?></<?php echo $flipbox_if_html_title_tag; ?>>
|
1585 |
<?php endif; ?>
|
1579 |
} ?>
|
1580 |
</div>
|
1581 |
<?php } ?>
|
|
|
1582 |
<?php if ( !empty( $settings['eael_flipbox_back_title'] ) ): ?>
|
1583 |
<<?php echo $flipbox_if_html_title_tag, ' ', $this->get_render_attribute_string('flipbox-title-container'); ?>><?php echo esc_html__($settings['eael_flipbox_back_title'], 'essential-addons-for-elementor-lite'); ?></<?php echo $flipbox_if_html_title_tag; ?>>
|
1584 |
<?php endif; ?>
|
includes/Elements/Info_Box.php
CHANGED
@@ -1635,7 +1635,7 @@ if ('yes' == $settings['eael_show_infobox_clickable']): ?></a><?php endif;
|
|
1635 |
?>
|
1636 |
<div <?php echo $this->get_render_attribute_string('infobox_content'); ?>>
|
1637 |
<?php if ( !empty( $settings['eael_infobox_title'] ) ): ?>
|
1638 |
-
<<?php echo Helper::eael_validate_html_tag( $settings['eael_infobox_title_tag'] ); ?> class="title"><?php echo
|
1639 |
<?php
|
1640 |
endif;
|
1641 |
if ('yes' == $settings['eael_show_infobox_content']): ?>
|
1635 |
?>
|
1636 |
<div <?php echo $this->get_render_attribute_string('infobox_content'); ?>>
|
1637 |
<?php if ( !empty( $settings['eael_infobox_title'] ) ): ?>
|
1638 |
+
<<?php echo Helper::eael_validate_html_tag( $settings['eael_infobox_title_tag'] ); ?> class="title"><?php echo Helper::eael_wp_kses($settings['eael_infobox_title']); ?></<?php echo Helper::eael_validate_html_tag( $settings['eael_infobox_title_tag'] ); ?>>
|
1639 |
<?php
|
1640 |
endif;
|
1641 |
if ('yes' == $settings['eael_show_infobox_content']): ?>
|
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-06-
|
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"
|
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-06-15 05:30+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"
|
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.0
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 5.1.
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
@@ -33,7 +33,7 @@ Use pre-made templates and sections which come with Essential Addons and design
|
|
33 |
|
34 |
[Install Templately to get the premade blocks and templates](https://wordpress.org/plugins/templately/)
|
35 |
|
36 |
-
Templately also offers saving your templates to cloud. Save all your designs with Templately & deploy in hundreds of websites with 1-click. Increase productivity and power up your whole team to build websites faster than ever before.
|
37 |
|
38 |
|
39 |
### Expert Support
|
@@ -46,8 +46,8 @@ We have extra-ordinary support team ready to help you. Ask your questions in the
|
|
46 |
|
47 |
We have designed more than 50 of the most useful widgets to enhance your Elementor Page Building experience and allow you to climb the top of your design capabilities.
|
48 |
|
49 |
-
1. [Post Grid](https://essential-addons.com/elementor/post-grid/) - Showcase your blog posts in 4 unique styles
|
50 |
-
2. [Post Timeline](https://essential-addons.com/elementor/post-timeline/) - Create stunning timeline for your posts & pages
|
51 |
3. [Fancy Text](https://essential-addons.com/elementor/fancy-text/ ) - Design pages using animated texts in 8 different styles
|
52 |
4. [Creative Buttons](https://essential-addons.com/elementor/creative-buttons/) - Quickly add modern buttons with hover effects
|
53 |
5. [Countdown](https://essential-addons.com/elementor/countdown/ ) - Include a countdown timer to boost click-through rates
|
@@ -59,9 +59,9 @@ We have designed more than 50 of the most useful widgets to enhance your Element
|
|
59 |
11. [Ninja Forms](https://essential-addons.com/elementor/ninja-forms/) - Easily create your form style just the way you want
|
60 |
12. [Caldera Forms](https://essential-addons.com/elementor/caldera-forms/) - Design effective mobile-friendly forms
|
61 |
13. [WPForms](https://essential-addons.com/elementor/wpforms/) - Create powerful WordPress forms in minutes
|
62 |
-
14. [weForms](https://essential-addons.com/elementor/weforms/) - Get the fastest form building experience
|
63 |
15. [Info Box](https://essential-addons.com/elementor/info-box/) - Design beautiful info box from predefined styles
|
64 |
-
16. [Flip Box](https://essential-addons.com/elementor/flip-box/) - Use animated Flip Boxes to highlight any content
|
65 |
17. [Dual Color Heading](https://essential-addons.com/elementor/dual-color-headline/) - Highlight your headings with dual colors
|
66 |
18. [Call to Action](https://essential-addons.com/elementor/call-to-action/) - Design call-to-action buttons with a few clicks
|
67 |
19. [Pricing Table](https://essential-addons.com/elementor/pricing-table/) - Create Pricing Tables within minutes that converts
|
@@ -72,7 +72,7 @@ We have designed more than 50 of the most useful widgets to enhance your Element
|
|
72 |
24. [Content Ticker](https://essential-addons.com/elementor/content-ticker/) - Use slider & ticker effects to display your content
|
73 |
25. [Tooltip](https://essential-addons.com/elementor/tooltip/) - Set tooltip for Icon, Image, Text or shortcodes
|
74 |
26. [Advanced Tabs](https://essential-addons.com/elementor/advanced-tabs/) - Display information neatly in nested tabs
|
75 |
-
27. [Advanced Accordion](https://essential-addons.com/elementor/advanced-accordion/) - Add beautiful nested accordions anywhere
|
76 |
28. [Progress Bar](https://essential-addons.com/elementor/progress-bar/) - Display progress bars with 4+ different styles
|
77 |
29. [Feature List](https://essential-addons.com/elementor/feature-list/) - Display feature lists with custom icons and styles
|
78 |
30. [Fluent Forms](https://essential-addons.com/elementor/fluent-forms/) - Design your Fluent Forms container, fields and anything you want
|
@@ -83,7 +83,7 @@ We have designed more than 50 of the most useful widgets to enhance your Element
|
|
83 |
35. [BetterDocs Search Form](https://essential-addons.com/elementor/betterdocs-search-form/) - Add a live search box for documentation
|
84 |
36. [Advanced Data Table](https://essential-addons.com/elementor/advanced-data-table) - Design large data tables without coding
|
85 |
37. [Event Calendar](https://essential-addons.com/elementor/event-calendar) - Create customized event pages in Elementor
|
86 |
-
38. [Formstack](https://essential-addons.com/elementor/formstack/) - Design your Formstack forms within Elementor
|
87 |
39. [Woo Checkout](https://essential-addons.com/elementor/woo-checkout/) - Build attractive WooCommerce Checkout pages (https://www.youtube.com/watch?v=l3GNAJHza5c)
|
88 |
40. [Typeform](https://essential-addons.com/elementor/typeform/) - Embed & design your Typeform forms in Elementor
|
89 |
41. [Login | Register Form](https://essential-addons.com/elementor/login-register-form/) - Create amazing login/registration forms
|
@@ -94,27 +94,27 @@ We have designed more than 50 of the most useful widgets to enhance your Element
|
|
94 |
46. [Woo Cart](https://essential-addons.com/elementor/woo-cart/)- Use WooCommerce Cart page to boost online sales
|
95 |
47. [Interactive Circle](https://essential-addons.com/elementor/interactive-circle/)- Display content with engaging circular layouts
|
96 |
|
97 |
-
Extensions (Free):
|
98 |
|
99 |
1. [Reading Progress Bar](https://essential-addons.com/elementor/reading-progress/) - Add progress bar to show reading position (https://www.youtube.com/watch?v=3Teo4kSWJPA)
|
100 |
2. [Duplicator](https://essential-addons.com/elementor/post-duplicator/) - Duplicate any page or post in a single click
|
101 |
3. [Table of Contents](https://essential-addons.com/elementor/table-of-content/) - Display Table of Contents anywhere you want (https://www.youtube.com/watch?v=W6woRX7Ud7I )
|
102 |
4. [Custom JS](https://essential-addons.com/elementor/docs/custom-js/) - Add custom JavaScript in Elementor with a few clicks
|
103 |
-
5. [Scroll to Top](https://essential-addons.com/elementor/scroll-to-top)- Let visitors quickly navigate to the top of your page
|
104 |
|
105 |
### More elements (35+) on [Premium Version](https://wpdeveloper.com/in/upgrade-essential-addons-elementor)
|
106 |
|
107 |
1. [Post Block](https://essential-addons.com/elementor/post-block/) - Display your blog posts with a variety of styles
|
108 |
2. [Lightbox & Modal](https://essential-addons.com/elementor/lightbox-modal/) - Create interactive popups after trigger actions
|
109 |
3. [Testimonial Slider](https://essential-addons.com/elementor/testimonial-slider/) - Share customer reviews with animated sliders
|
110 |
-
4. [Image Comparison](https://essential-addons.com/elementor/image-comparison/) - Let your viewers compare between two images
|
111 |
5. [Interactive Promo](https://essential-addons.com/elementor/interactive-promo/ ) - Display content with attractive animations
|
112 |
6. [Instagram Feed](https://essential-addons.com/elementor/instagram-feed/) - Display Instagram posts beautifully in Elementor
|
113 |
7. [Advanced Google Map](https://essential-addons.com/elementor/advanced-google-map/) - Create maps with unlimited themes (https://www.youtube.com/watch?v=kLx9O8ZoBv0)
|
114 |
8. [Static Product](https://essential-addons.com/elementor/static-product/) - Present your static product just the way you want
|
115 |
9. [Flip Carousel](https://essential-addons.com/elementor/flip-carousel/) - Feature your content using a unique carousel style
|
116 |
10. [Interactive Cards](https://essential-addons.com/elementor/interactive-cards/) - Create fascinating effects for your content
|
117 |
-
11. [Content Timeline](https://essential-addons.com/elementor/content-timeline/) - Create memory lane with animated scrolling
|
118 |
12. [Advanced Menu](https://essential-addons.com/elementor/advanced-menu/) - Use advanced navigation menu anywhere
|
119 |
13. [Twitter Feed Carousel](https://essential-addons.com/elementor/twitter-feed/) - Share Twitter posts in interactive styles
|
120 |
14. [Dynamic Gallery](https://essential-addons.com/elementor/dynamic-gallery/) - Add filterable gallery for any content
|
@@ -122,7 +122,7 @@ Extensions (Free):
|
|
122 |
16. [Mailchimp](https://essential-addons.com/elementor/mailchimp/) - Design your Mailchimp form within Elementor with ease
|
123 |
17. [Toggle](https://essential-addons.com/elementor/content-toggle/) - Share any content in less space with a toggle
|
124 |
18. [One Page Navigation](https://essential-addons.com/elementor/one-page-nav/) - Create one page websites in Elementor
|
125 |
-
19. [Price Menu](https://essential-addons.com/elementor/price-menu/) - Make a beautiful pricing menu for your brands
|
126 |
20. [Image Hotspots](https://essential-addons.com/elementor/image-hotspots/) - Add hotspot icons with tooltips in an image
|
127 |
21. [Fancy Divider](https://essential-addons.com/elementor/divider/) - Separate your section with fancy divider
|
128 |
22. [Counter](https://essential-addons.com/elementor/counter/) - Highlight important data using the Counter element
|
@@ -131,20 +131,20 @@ Extensions (Free):
|
|
131 |
25. [Logo Carousel](https://essential-addons.com/elementor/logo-carousel/) - Highlight brands or product logos in a carousel
|
132 |
26. [Protected Content](https://essential-addons.com/elementor/protected-content/) - Lock your content with password protection
|
133 |
27. [Offcanvas](https://essential-addons.com/elementor/offcanvas-content/) - Display content in offcanvas with one click
|
134 |
-
28. [Image Scroller](https://essential-addons.com/elementor/image-scroller/) - Show long height images with image scroller
|
135 |
29. [Woo Product Slider](https://essential-addons.com/elementor/woo-product-slider/) - Showcase your products in a stunning slider
|
136 |
-
30. [Woo Product Collections](https://essential-addons.com/elementor/woocommerce-product-collections/)- Show product collections beautifully
|
137 |
31. [LearnDash Course List](https://essential-addons.com/elementor/learndash-course-list/)- Share LearnDash course list in Elementor
|
138 |
32. [Advanced Search](https://essential-addons.com/elementor/advanced-search/)- Add a customizable, dynamic search bar
|
139 |
|
140 |
-
Extensions (Pro):
|
141 |
|
142 |
1. [Parallax](https://essential-addons.com/elementor/parallax-scrolling/) - Add creative parallax effects to your content
|
143 |
2. [Particles](https://essential-addons.com/elementor/particle-effect/) - Add animated particle effects to your content
|
144 |
3. [Advanced Tooltip](https://essential-addons.com/elementor/advanced-tooltip/) - Make any widget more informative with tooltip
|
145 |
4. [Content Protection](https://essential-addons.com/elementor/content-protection/) - Hide your content with password protection
|
146 |
5. [Cross-Domain Copy Paste](https://essential-addons.com/elementor/cross-domain-copy-paste/)- Copy any section in Elementor from one website and paste it on another
|
147 |
-
6. [Conditional Display](https://essential-addons.com/elementor/conditional-display/)- Display your preferred content based on the logic conditions you have set
|
148 |
|
149 |
|
150 |
More features and improvements are coming on regular updates. Want to unlock the advanced elements? [Upgrade to our Pro version](https://essential-addons.com/elementor/#pricing)
|
@@ -152,9 +152,9 @@ More features and improvements are coming on regular updates. Want to unlock the
|
|
152 |
|
153 |
### 🏆 FEATURED BY 100+ RENOWNED PUBLICATIONS
|
154 |
|
155 |
-
**WP Mayor:** “If you use Elementor, Essential Addons is a great way to expand your library of available widgets without slowing your site down.”
|
156 |
-
**WP Pagebuilders:** “With 60+ additional widgets, Essential Addons is a great add-on to enhance your experience in building a website with WordPress+Elementor.”
|
157 |
-
**MonsterPost:** “Essential Addons for Elementor has the largest number of active users among all third-party extensions on the market. The widgets are tested in all popular web browsers to ensure full browser compatibility for all elements.”
|
158 |
**WPCrafter:** WordPress influencer Adam Preiser did a Speed Test & found Essential Addons for Elementor is the fastest solution out there 👇
|
159 |
|
160 |
https://www.youtube.com/watch?v=K9BssSV-KC8
|
@@ -162,14 +162,14 @@ https://www.youtube.com/watch?v=K9BssSV-KC8
|
|
162 |
|
163 |
### LOOKING FOR THE MOST FLEXIBLE THEME?
|
164 |
|
165 |
-
Check [Flexia](https://wordpress.org/themes/flexia/), the best friend of Elementor and Essential Addons. A modern lightweight and versatile theme for WordPress with endless customization options. **And fully Free.**
|
166 |
|
167 |
### BACKED BY A TRUSTED TEAM
|
168 |
Essential Addons for Elementor is brought to you by [WPDeveloper](https://wpdeveloper.com/), a dedicated WordPress product company, trusted by 3 million+ happy users.
|
169 |
|
170 |
### Documentation and Support
|
171 |
|
172 |
-
- For documentation and tutorials go to our [Documentation](https://essential-addons.com/elementor/docs/).
|
173 |
- If you have any more questions, visit our support on the [Plugin's Forum](https://wordpress.org/support/plugin/essential-addons-for-elementor-lite).
|
174 |
- For more information about features, FAQs and documentation, check out our website at [Essential Addons for Elementor](https://essential-addons.com/elementor/).
|
175 |
|
@@ -191,7 +191,7 @@ If you like Essential Addons, then consider checking out our other WordPress Plu
|
|
191 |
|
192 |
⭐ **[ReviewX](https://wordpress.org/plugins/reviewx/)** – Advanced multi criteria Rating & Reviews for WooCommerce that is seamlessly compatible with Elementor
|
193 |
|
194 |
-
🔗 **[EmbedPress](https://wordpress.org/plugins/embedpress/)** - Easiest WordPress solution for embedding videos, images, posts, audio, maps and PDF, DOC, PPT & all other types of content into your website using Elementor, Gutenberg and more.
|
195 |
|
196 |
🔎 **[Easy.Jobs](https://wordpress.org/plugins/easyjobs/)** - Smart and easy recruitment and talent sourcing solution for hiring remotely with AI-powered screening system, question sets, remote interviews, and designing branded career pages with Elementor.
|
197 |
|
@@ -242,13 +242,19 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
242 |
|
243 |
== Changelog ==
|
244 |
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
= 5.1.5 - 14/06/2022 =
|
246 |
|
247 |
- Improved: EA Team Member | Added option to show description on hover
|
248 |
- Improved: EA Event Calendar | Added option to use different colors for different events
|
249 |
- Improved: EA Event Calendar | Added option to hide old events
|
250 |
- Improved: EA Event Calendar | Added "Custom Event URL" option for individual events
|
251 |
-
- Improved: EA Advanced Tabs | Added heading tags for Tab titles
|
252 |
- Improved: EA Advanced Accordion | Added icon controls when the tab expands
|
253 |
- Improved: EA Tooltip | Added sticky option on the Top when scrolling down
|
254 |
- Improved: EA Table of Contents | Added option to highlight current position
|
@@ -258,7 +264,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
258 |
- Fixed: EA Woo Product Gallery | Showing blurry product images for Preset 4
|
259 |
- Fixed: EA Team Member | Social Profile nofollow not working
|
260 |
- Fixed: EA Advanced Tabs | Anchor link not working with Custom ID
|
261 |
-
- Fixed: EA Data Table | Sorting not working when setting column span greater than 1
|
262 |
- Fixed: EA Interactive Circle | Turning into rectangle shape in responsive devices
|
263 |
- Few minor bug fixes & improvements
|
264 |
|
@@ -283,7 +289,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
283 |
- Fixed: EA Woo Product Gallery | Showing No categories found error despite categories option being disabled
|
284 |
- Fixed: EA Feature List | Images looking blurry regardless of the resolution and size
|
285 |
- Fixed: EA Flip Box | Title & Button links not working without "https://"
|
286 |
-
- Fixed: EA Product Grid | Sale text not changing in the Quick View pop up
|
287 |
- Fixed: EA Product Grid | Quick View style changing when going to next page through pagination
|
288 |
- Fixed: EA Product Grid | Add to Cart behavior to Cart Page not working from Quick View screen
|
289 |
- Fixed: EA Post Grid | Throwing error when posts per page is blank
|
@@ -396,7 +402,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
396 |
|
397 |
- Fixed: Parameter sanitization in dynamic widgets
|
398 |
- Fixed EA Advanced Accordion & Tabs | Custom ID Anchor not working with links on same page
|
399 |
-
- Fixed: EA Interactive Card rear panel scrolling not working inside EA Advanced Tabs
|
400 |
- Fixed: EA Woo Cart | Last item not getting removed from Cart
|
401 |
- Fixed: EA Interactive Circle | Global Color not working on Items
|
402 |
- Added: EA Woo Checkout | Option for hiding the coupon code
|
@@ -538,7 +544,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
538 |
- Fixed: EA Info Box | SVG icon color not changing
|
539 |
- Fixed: EA Post Grid | Meta Style color not changing
|
540 |
- Fixed: EA Woo Product Carousel | 'Quick View' popup not showing properly when multiple images are used
|
541 |
-
- Fixed: EA Woo Product Carousel | Draft products being displayed on Edit Mode
|
542 |
- Fixed: EA Woo Product Compare | Product Custom Attribute not showing
|
543 |
- Added: EA Woo Product Grid | Heading tag for 'Quick View' option
|
544 |
- Added: EA Twitter Feed | 'Read More' text change control
|
@@ -574,7 +580,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
574 |
- Fixed: EA Woo Product Carousel | Cart button default color not changing
|
575 |
- Fixed: EA Woo Product Carousel | Broken layout on Astra theme
|
576 |
- Fixed: EA Product Grid | Button styles not working for "Out of Stock" products
|
577 |
-
- Fixed: EA Sticky Video | PHP notice when Sticky option is not enabled
|
578 |
- Fixed: EA Countdown | Saved Template not working as per the condition
|
579 |
- Fixed: EA Product Grid | Product Title color not changing on the Quick view Popup section
|
580 |
- Fixed: EA Flip Box | Zoom out and Fade in effects not working
|
@@ -634,7 +640,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
634 |
- Improved: Refactored code for Security Enhancement
|
635 |
- Added: EA Data Table | Added ‘icon’ option in Content Type
|
636 |
- Fixed: Conflict with swiperJS
|
637 |
-
- Fixed: EA Creative Button | issues with the tab view and default styles
|
638 |
- Fixed: EA Product Grid | Product header tag not being changeable
|
639 |
- Fixed: EA Facebook Feed | different page ID's showing same content
|
640 |
- Few minor bug fix and improvements
|
@@ -759,10 +765,10 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
759 |
= 4.3.7 - 19/11/2020 =
|
760 |
- Fixed: Broken style if Object Cache is enabled
|
761 |
- Fixed: Pages showing blank after updating with Elementor
|
762 |
-
- Added: RTL Support
|
763 |
- Improved: EA Product Grid | New Presets, Quick View & Pagination
|
764 |
- Improved: EA Woo Checkout | added text change options
|
765 |
-
- Improved: EA Flip Box | Default Appearance & added 3D Effect
|
766 |
- Improved: EA Dual Color Heading | Gradient Text Color & SVG not showing in Content
|
767 |
- Fixed: EA Woo Checkout | Invalid Recurring Shipping Method & not updating properly
|
768 |
- Fixed: EA Image Accordion | Border Radius not working & Missing content alignment controls
|
@@ -828,7 +834,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
828 |
- Few minor bugfix and improvements
|
829 |
|
830 |
= 4.2.3 - 03/09/2020 =
|
831 |
-
- Removed: Dashboard widget
|
832 |
- Fixed: EA Filterable Gallery | Showing Duplicate Images in Gallery View
|
833 |
- Few minor bugfix and improvements
|
834 |
|
@@ -884,7 +890,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
884 |
|
885 |
= 4.0.3 - 11/06/2020 =
|
886 |
- Fixed: EA Filterable Gallery Image Overlapping issue with Lazyload- WP Rocket
|
887 |
-
- Fixed: EA Feature List Default Arrow Indicator Position issue
|
888 |
- Fixed: EA Table of Content appearing at the bottom for Gutenberg posts
|
889 |
- Fixed: EA Post Grid issue with Load More 'Grid' layout becoming Masonry
|
890 |
- Fixed: EA Post Grid issue with PressForward plugin
|
@@ -902,7 +908,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
902 |
- Improvement : EA Testimonials | Added spacing options for content, and more Styling layouts
|
903 |
- Improvement : EA Image Accordion | Added content alignment, and image styling options
|
904 |
- Fixed : Responsive issue for EA Feature List when connector is enabled
|
905 |
-
- Few minor bug fix and improvements
|
906 |
|
907 |
|
908 |
= 4.0.1 - 28/05/2020 =
|
@@ -1016,7 +1022,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
1016 |
- Fixed: Circle progress not showing in safari
|
1017 |
- Fixed: Filterable Gallery | Column Number issue on Firefox
|
1018 |
- Fixed: Feature List Image issue
|
1019 |
-
- Fixed: Ninja Form Radio & Checkbox styles are not working
|
1020 |
- Fixed: Post Grid | Random Order shows duplicate posts when Load More is used
|
1021 |
- Fixed: Lightbox & Modal > Close Button positioning issue
|
1022 |
- Improvements: Advanced Tabs responsiveness
|
@@ -1024,7 +1030,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
1024 |
- Few minor bugfix and improvements
|
1025 |
|
1026 |
= 3.6.2 - 09/12/2019 =
|
1027 |
-
- Bugfix: Product grid responsive issue
|
1028 |
- Bugfix: 404 page assets loading
|
1029 |
- Bugfix: Data Table | Content Alignment (left/right)
|
1030 |
- Bugfix: Fancy text > not showing animation on edit mode
|
@@ -1064,7 +1070,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
1064 |
|
1065 |
= 3.5.0 - 30/10/2019 =
|
1066 |
- Added : Facebook Feed widget with new graph API
|
1067 |
-
- Improved : Asset loading protocol
|
1068 |
- Bug fix: Query settings not updated (edited)
|
1069 |
- Bug fix: Query not working for export/import
|
1070 |
- Bug fix: Reading progress showing if disabled from settings panel
|
@@ -1092,7 +1098,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
1092 |
- Few minor bugfix and improvements
|
1093 |
|
1094 |
= 3.3.2 - 26/09/2019 =
|
1095 |
-
- Added : Filterable Gallery new layout (Search & Filter)
|
1096 |
- Added: Post elements excerpt expanison indicator option field
|
1097 |
- Fixed: Post Grid hover not working
|
1098 |
- Fixed: Createive Button options not showing
|
@@ -1158,7 +1164,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
1158 |
|
1159 |
= 3.0.3 - 04/06/2019 =
|
1160 |
- Fixed : Filterable Gallery button show without title
|
1161 |
-
- Fixed : Pricing Table mobile price overlaping issue
|
1162 |
- Fixed : ImageLoaded broken path
|
1163 |
- Fixed : Gravity Form inline spacing issue
|
1164 |
- Enhanced : Team Member social icons spacing control added
|
@@ -1254,7 +1260,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
1254 |
= 2.8.7 - 24/12/2018 =
|
1255 |
|
1256 |
- Added : Version rollback option
|
1257 |
-
- Fixed : Data Table border issue
|
1258 |
- Fixed : EA Flipbox font color doesn't change for the rear one
|
1259 |
- Fixed : EA Fancy text loop settings not working
|
1260 |
- Fixed : Filterable gallery layout issue
|
@@ -1362,7 +1368,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
1362 |
|
1363 |
- Countdown element improved and Expire action added
|
1364 |
- Post Grid and Post Timeline query optimized and load more improved
|
1365 |
-
- Post Grid Masonry improved
|
1366 |
- Info Box layout improved and more options added
|
1367 |
- Content Ticker improved
|
1368 |
- Data Table responsiveness improved
|
@@ -1509,7 +1515,7 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
1509 |
- Info Box element added.
|
1510 |
- Flip Box element added.
|
1511 |
- Dual color headline element added.
|
1512 |
-
- Few minor bug fixes and improvements.
|
1513 |
|
1514 |
= 1.1.0 - 15/08/2017 =
|
1515 |
|
4 |
Requires at least: 5.0
|
5 |
Tested up to: 6.0
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 5.1.6
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
33 |
|
34 |
[Install Templately to get the premade blocks and templates](https://wordpress.org/plugins/templately/)
|
35 |
|
36 |
+
Templately also offers saving your templates to cloud. Save all your designs with Templately & deploy in hundreds of websites with 1-click. Increase productivity and power up your whole team to build websites faster than ever before.
|
37 |
|
38 |
|
39 |
### Expert Support
|
46 |
|
47 |
We have designed more than 50 of the most useful widgets to enhance your Elementor Page Building experience and allow you to climb the top of your design capabilities.
|
48 |
|
49 |
+
1. [Post Grid](https://essential-addons.com/elementor/post-grid/) - Showcase your blog posts in 4 unique styles
|
50 |
+
2. [Post Timeline](https://essential-addons.com/elementor/post-timeline/) - Create stunning timeline for your posts & pages
|
51 |
3. [Fancy Text](https://essential-addons.com/elementor/fancy-text/ ) - Design pages using animated texts in 8 different styles
|
52 |
4. [Creative Buttons](https://essential-addons.com/elementor/creative-buttons/) - Quickly add modern buttons with hover effects
|
53 |
5. [Countdown](https://essential-addons.com/elementor/countdown/ ) - Include a countdown timer to boost click-through rates
|
59 |
11. [Ninja Forms](https://essential-addons.com/elementor/ninja-forms/) - Easily create your form style just the way you want
|
60 |
12. [Caldera Forms](https://essential-addons.com/elementor/caldera-forms/) - Design effective mobile-friendly forms
|
61 |
13. [WPForms](https://essential-addons.com/elementor/wpforms/) - Create powerful WordPress forms in minutes
|
62 |
+
14. [weForms](https://essential-addons.com/elementor/weforms/) - Get the fastest form building experience
|
63 |
15. [Info Box](https://essential-addons.com/elementor/info-box/) - Design beautiful info box from predefined styles
|
64 |
+
16. [Flip Box](https://essential-addons.com/elementor/flip-box/) - Use animated Flip Boxes to highlight any content
|
65 |
17. [Dual Color Heading](https://essential-addons.com/elementor/dual-color-headline/) - Highlight your headings with dual colors
|
66 |
18. [Call to Action](https://essential-addons.com/elementor/call-to-action/) - Design call-to-action buttons with a few clicks
|
67 |
19. [Pricing Table](https://essential-addons.com/elementor/pricing-table/) - Create Pricing Tables within minutes that converts
|
72 |
24. [Content Ticker](https://essential-addons.com/elementor/content-ticker/) - Use slider & ticker effects to display your content
|
73 |
25. [Tooltip](https://essential-addons.com/elementor/tooltip/) - Set tooltip for Icon, Image, Text or shortcodes
|
74 |
26. [Advanced Tabs](https://essential-addons.com/elementor/advanced-tabs/) - Display information neatly in nested tabs
|
75 |
+
27. [Advanced Accordion](https://essential-addons.com/elementor/advanced-accordion/) - Add beautiful nested accordions anywhere
|
76 |
28. [Progress Bar](https://essential-addons.com/elementor/progress-bar/) - Display progress bars with 4+ different styles
|
77 |
29. [Feature List](https://essential-addons.com/elementor/feature-list/) - Display feature lists with custom icons and styles
|
78 |
30. [Fluent Forms](https://essential-addons.com/elementor/fluent-forms/) - Design your Fluent Forms container, fields and anything you want
|
83 |
35. [BetterDocs Search Form](https://essential-addons.com/elementor/betterdocs-search-form/) - Add a live search box for documentation
|
84 |
36. [Advanced Data Table](https://essential-addons.com/elementor/advanced-data-table) - Design large data tables without coding
|
85 |
37. [Event Calendar](https://essential-addons.com/elementor/event-calendar) - Create customized event pages in Elementor
|
86 |
+
38. [Formstack](https://essential-addons.com/elementor/formstack/) - Design your Formstack forms within Elementor
|
87 |
39. [Woo Checkout](https://essential-addons.com/elementor/woo-checkout/) - Build attractive WooCommerce Checkout pages (https://www.youtube.com/watch?v=l3GNAJHza5c)
|
88 |
40. [Typeform](https://essential-addons.com/elementor/typeform/) - Embed & design your Typeform forms in Elementor
|
89 |
41. [Login | Register Form](https://essential-addons.com/elementor/login-register-form/) - Create amazing login/registration forms
|
94 |
46. [Woo Cart](https://essential-addons.com/elementor/woo-cart/)- Use WooCommerce Cart page to boost online sales
|
95 |
47. [Interactive Circle](https://essential-addons.com/elementor/interactive-circle/)- Display content with engaging circular layouts
|
96 |
|
97 |
+
Extensions (Free):
|
98 |
|
99 |
1. [Reading Progress Bar](https://essential-addons.com/elementor/reading-progress/) - Add progress bar to show reading position (https://www.youtube.com/watch?v=3Teo4kSWJPA)
|
100 |
2. [Duplicator](https://essential-addons.com/elementor/post-duplicator/) - Duplicate any page or post in a single click
|
101 |
3. [Table of Contents](https://essential-addons.com/elementor/table-of-content/) - Display Table of Contents anywhere you want (https://www.youtube.com/watch?v=W6woRX7Ud7I )
|
102 |
4. [Custom JS](https://essential-addons.com/elementor/docs/custom-js/) - Add custom JavaScript in Elementor with a few clicks
|
103 |
+
5. [Scroll to Top](https://essential-addons.com/elementor/scroll-to-top)- Let visitors quickly navigate to the top of your page
|
104 |
|
105 |
### More elements (35+) on [Premium Version](https://wpdeveloper.com/in/upgrade-essential-addons-elementor)
|
106 |
|
107 |
1. [Post Block](https://essential-addons.com/elementor/post-block/) - Display your blog posts with a variety of styles
|
108 |
2. [Lightbox & Modal](https://essential-addons.com/elementor/lightbox-modal/) - Create interactive popups after trigger actions
|
109 |
3. [Testimonial Slider](https://essential-addons.com/elementor/testimonial-slider/) - Share customer reviews with animated sliders
|
110 |
+
4. [Image Comparison](https://essential-addons.com/elementor/image-comparison/) - Let your viewers compare between two images
|
111 |
5. [Interactive Promo](https://essential-addons.com/elementor/interactive-promo/ ) - Display content with attractive animations
|
112 |
6. [Instagram Feed](https://essential-addons.com/elementor/instagram-feed/) - Display Instagram posts beautifully in Elementor
|
113 |
7. [Advanced Google Map](https://essential-addons.com/elementor/advanced-google-map/) - Create maps with unlimited themes (https://www.youtube.com/watch?v=kLx9O8ZoBv0)
|
114 |
8. [Static Product](https://essential-addons.com/elementor/static-product/) - Present your static product just the way you want
|
115 |
9. [Flip Carousel](https://essential-addons.com/elementor/flip-carousel/) - Feature your content using a unique carousel style
|
116 |
10. [Interactive Cards](https://essential-addons.com/elementor/interactive-cards/) - Create fascinating effects for your content
|
117 |
+
11. [Content Timeline](https://essential-addons.com/elementor/content-timeline/) - Create memory lane with animated scrolling
|
118 |
12. [Advanced Menu](https://essential-addons.com/elementor/advanced-menu/) - Use advanced navigation menu anywhere
|
119 |
13. [Twitter Feed Carousel](https://essential-addons.com/elementor/twitter-feed/) - Share Twitter posts in interactive styles
|
120 |
14. [Dynamic Gallery](https://essential-addons.com/elementor/dynamic-gallery/) - Add filterable gallery for any content
|
122 |
16. [Mailchimp](https://essential-addons.com/elementor/mailchimp/) - Design your Mailchimp form within Elementor with ease
|
123 |
17. [Toggle](https://essential-addons.com/elementor/content-toggle/) - Share any content in less space with a toggle
|
124 |
18. [One Page Navigation](https://essential-addons.com/elementor/one-page-nav/) - Create one page websites in Elementor
|
125 |
+
19. [Price Menu](https://essential-addons.com/elementor/price-menu/) - Make a beautiful pricing menu for your brands
|
126 |
20. [Image Hotspots](https://essential-addons.com/elementor/image-hotspots/) - Add hotspot icons with tooltips in an image
|
127 |
21. [Fancy Divider](https://essential-addons.com/elementor/divider/) - Separate your section with fancy divider
|
128 |
22. [Counter](https://essential-addons.com/elementor/counter/) - Highlight important data using the Counter element
|
131 |
25. [Logo Carousel](https://essential-addons.com/elementor/logo-carousel/) - Highlight brands or product logos in a carousel
|
132 |
26. [Protected Content](https://essential-addons.com/elementor/protected-content/) - Lock your content with password protection
|
133 |
27. [Offcanvas](https://essential-addons.com/elementor/offcanvas-content/) - Display content in offcanvas with one click
|
134 |
+
28. [Image Scroller](https://essential-addons.com/elementor/image-scroller/) - Show long height images with image scroller
|
135 |
29. [Woo Product Slider](https://essential-addons.com/elementor/woo-product-slider/) - Showcase your products in a stunning slider
|
136 |
+
30. [Woo Product Collections](https://essential-addons.com/elementor/woocommerce-product-collections/)- Show product collections beautifully
|
137 |
31. [LearnDash Course List](https://essential-addons.com/elementor/learndash-course-list/)- Share LearnDash course list in Elementor
|
138 |
32. [Advanced Search](https://essential-addons.com/elementor/advanced-search/)- Add a customizable, dynamic search bar
|
139 |
|
140 |
+
Extensions (Pro):
|
141 |
|
142 |
1. [Parallax](https://essential-addons.com/elementor/parallax-scrolling/) - Add creative parallax effects to your content
|
143 |
2. [Particles](https://essential-addons.com/elementor/particle-effect/) - Add animated particle effects to your content
|
144 |
3. [Advanced Tooltip](https://essential-addons.com/elementor/advanced-tooltip/) - Make any widget more informative with tooltip
|
145 |
4. [Content Protection](https://essential-addons.com/elementor/content-protection/) - Hide your content with password protection
|
146 |
5. [Cross-Domain Copy Paste](https://essential-addons.com/elementor/cross-domain-copy-paste/)- Copy any section in Elementor from one website and paste it on another
|
147 |
+
6. [Conditional Display](https://essential-addons.com/elementor/conditional-display/)- Display your preferred content based on the logic conditions you have set
|
148 |
|
149 |
|
150 |
More features and improvements are coming on regular updates. Want to unlock the advanced elements? [Upgrade to our Pro version](https://essential-addons.com/elementor/#pricing)
|
152 |
|
153 |
### 🏆 FEATURED BY 100+ RENOWNED PUBLICATIONS
|
154 |
|
155 |
+
**WP Mayor:** “If you use Elementor, Essential Addons is a great way to expand your library of available widgets without slowing your site down.”
|
156 |
+
**WP Pagebuilders:** “With 60+ additional widgets, Essential Addons is a great add-on to enhance your experience in building a website with WordPress+Elementor.”
|
157 |
+
**MonsterPost:** “Essential Addons for Elementor has the largest number of active users among all third-party extensions on the market. The widgets are tested in all popular web browsers to ensure full browser compatibility for all elements.”
|
158 |
**WPCrafter:** WordPress influencer Adam Preiser did a Speed Test & found Essential Addons for Elementor is the fastest solution out there 👇
|
159 |
|
160 |
https://www.youtube.com/watch?v=K9BssSV-KC8
|
162 |
|
163 |
### LOOKING FOR THE MOST FLEXIBLE THEME?
|
164 |
|
165 |
+
Check [Flexia](https://wordpress.org/themes/flexia/), the best friend of Elementor and Essential Addons. A modern lightweight and versatile theme for WordPress with endless customization options. **And fully Free.**
|
166 |
|
167 |
### BACKED BY A TRUSTED TEAM
|
168 |
Essential Addons for Elementor is brought to you by [WPDeveloper](https://wpdeveloper.com/), a dedicated WordPress product company, trusted by 3 million+ happy users.
|
169 |
|
170 |
### Documentation and Support
|
171 |
|
172 |
+
- For documentation and tutorials go to our [Documentation](https://essential-addons.com/elementor/docs/).
|
173 |
- If you have any more questions, visit our support on the [Plugin's Forum](https://wordpress.org/support/plugin/essential-addons-for-elementor-lite).
|
174 |
- For more information about features, FAQs and documentation, check out our website at [Essential Addons for Elementor](https://essential-addons.com/elementor/).
|
175 |
|
191 |
|
192 |
⭐ **[ReviewX](https://wordpress.org/plugins/reviewx/)** – Advanced multi criteria Rating & Reviews for WooCommerce that is seamlessly compatible with Elementor
|
193 |
|
194 |
+
🔗 **[EmbedPress](https://wordpress.org/plugins/embedpress/)** - Easiest WordPress solution for embedding videos, images, posts, audio, maps and PDF, DOC, PPT & all other types of content into your website using Elementor, Gutenberg and more.
|
195 |
|
196 |
🔎 **[Easy.Jobs](https://wordpress.org/plugins/easyjobs/)** - Smart and easy recruitment and talent sourcing solution for hiring remotely with AI-powered screening system, question sets, remote interviews, and designing branded career pages with Elementor.
|
197 |
|
242 |
|
243 |
== Changelog ==
|
244 |
|
245 |
+
= 5.1.6 - 15/06/2022 =
|
246 |
+
|
247 |
+
- Fixed: EA Info Box | HTML tag not working inside Infobox Title
|
248 |
+
- Fixed: EA Flip Box | `<div>` tag being closed incorrectly
|
249 |
+
- Few minor bug fixes & improvements
|
250 |
+
|
251 |
= 5.1.5 - 14/06/2022 =
|
252 |
|
253 |
- Improved: EA Team Member | Added option to show description on hover
|
254 |
- Improved: EA Event Calendar | Added option to use different colors for different events
|
255 |
- Improved: EA Event Calendar | Added option to hide old events
|
256 |
- Improved: EA Event Calendar | Added "Custom Event URL" option for individual events
|
257 |
+
- Improved: EA Advanced Tabs | Added heading tags for Tab titles
|
258 |
- Improved: EA Advanced Accordion | Added icon controls when the tab expands
|
259 |
- Improved: EA Tooltip | Added sticky option on the Top when scrolling down
|
260 |
- Improved: EA Table of Contents | Added option to highlight current position
|
264 |
- Fixed: EA Woo Product Gallery | Showing blurry product images for Preset 4
|
265 |
- Fixed: EA Team Member | Social Profile nofollow not working
|
266 |
- Fixed: EA Advanced Tabs | Anchor link not working with Custom ID
|
267 |
+
- Fixed: EA Data Table | Sorting not working when setting column span greater than 1
|
268 |
- Fixed: EA Interactive Circle | Turning into rectangle shape in responsive devices
|
269 |
- Few minor bug fixes & improvements
|
270 |
|
289 |
- Fixed: EA Woo Product Gallery | Showing No categories found error despite categories option being disabled
|
290 |
- Fixed: EA Feature List | Images looking blurry regardless of the resolution and size
|
291 |
- Fixed: EA Flip Box | Title & Button links not working without "https://"
|
292 |
+
- Fixed: EA Product Grid | Sale text not changing in the Quick View pop up
|
293 |
- Fixed: EA Product Grid | Quick View style changing when going to next page through pagination
|
294 |
- Fixed: EA Product Grid | Add to Cart behavior to Cart Page not working from Quick View screen
|
295 |
- Fixed: EA Post Grid | Throwing error when posts per page is blank
|
402 |
|
403 |
- Fixed: Parameter sanitization in dynamic widgets
|
404 |
- Fixed EA Advanced Accordion & Tabs | Custom ID Anchor not working with links on same page
|
405 |
+
- Fixed: EA Interactive Card rear panel scrolling not working inside EA Advanced Tabs
|
406 |
- Fixed: EA Woo Cart | Last item not getting removed from Cart
|
407 |
- Fixed: EA Interactive Circle | Global Color not working on Items
|
408 |
- Added: EA Woo Checkout | Option for hiding the coupon code
|
544 |
- Fixed: EA Info Box | SVG icon color not changing
|
545 |
- Fixed: EA Post Grid | Meta Style color not changing
|
546 |
- Fixed: EA Woo Product Carousel | 'Quick View' popup not showing properly when multiple images are used
|
547 |
+
- Fixed: EA Woo Product Carousel | Draft products being displayed on Edit Mode
|
548 |
- Fixed: EA Woo Product Compare | Product Custom Attribute not showing
|
549 |
- Added: EA Woo Product Grid | Heading tag for 'Quick View' option
|
550 |
- Added: EA Twitter Feed | 'Read More' text change control
|
580 |
- Fixed: EA Woo Product Carousel | Cart button default color not changing
|
581 |
- Fixed: EA Woo Product Carousel | Broken layout on Astra theme
|
582 |
- Fixed: EA Product Grid | Button styles not working for "Out of Stock" products
|
583 |
+
- Fixed: EA Sticky Video | PHP notice when Sticky option is not enabled
|
584 |
- Fixed: EA Countdown | Saved Template not working as per the condition
|
585 |
- Fixed: EA Product Grid | Product Title color not changing on the Quick view Popup section
|
586 |
- Fixed: EA Flip Box | Zoom out and Fade in effects not working
|
640 |
- Improved: Refactored code for Security Enhancement
|
641 |
- Added: EA Data Table | Added ‘icon’ option in Content Type
|
642 |
- Fixed: Conflict with swiperJS
|
643 |
+
- Fixed: EA Creative Button | issues with the tab view and default styles
|
644 |
- Fixed: EA Product Grid | Product header tag not being changeable
|
645 |
- Fixed: EA Facebook Feed | different page ID's showing same content
|
646 |
- Few minor bug fix and improvements
|
765 |
= 4.3.7 - 19/11/2020 =
|
766 |
- Fixed: Broken style if Object Cache is enabled
|
767 |
- Fixed: Pages showing blank after updating with Elementor
|
768 |
+
- Added: RTL Support
|
769 |
- Improved: EA Product Grid | New Presets, Quick View & Pagination
|
770 |
- Improved: EA Woo Checkout | added text change options
|
771 |
+
- Improved: EA Flip Box | Default Appearance & added 3D Effect
|
772 |
- Improved: EA Dual Color Heading | Gradient Text Color & SVG not showing in Content
|
773 |
- Fixed: EA Woo Checkout | Invalid Recurring Shipping Method & not updating properly
|
774 |
- Fixed: EA Image Accordion | Border Radius not working & Missing content alignment controls
|
834 |
- Few minor bugfix and improvements
|
835 |
|
836 |
= 4.2.3 - 03/09/2020 =
|
837 |
+
- Removed: Dashboard widget
|
838 |
- Fixed: EA Filterable Gallery | Showing Duplicate Images in Gallery View
|
839 |
- Few minor bugfix and improvements
|
840 |
|
890 |
|
891 |
= 4.0.3 - 11/06/2020 =
|
892 |
- Fixed: EA Filterable Gallery Image Overlapping issue with Lazyload- WP Rocket
|
893 |
+
- Fixed: EA Feature List Default Arrow Indicator Position issue
|
894 |
- Fixed: EA Table of Content appearing at the bottom for Gutenberg posts
|
895 |
- Fixed: EA Post Grid issue with Load More 'Grid' layout becoming Masonry
|
896 |
- Fixed: EA Post Grid issue with PressForward plugin
|
908 |
- Improvement : EA Testimonials | Added spacing options for content, and more Styling layouts
|
909 |
- Improvement : EA Image Accordion | Added content alignment, and image styling options
|
910 |
- Fixed : Responsive issue for EA Feature List when connector is enabled
|
911 |
+
- Few minor bug fix and improvements
|
912 |
|
913 |
|
914 |
= 4.0.1 - 28/05/2020 =
|
1022 |
- Fixed: Circle progress not showing in safari
|
1023 |
- Fixed: Filterable Gallery | Column Number issue on Firefox
|
1024 |
- Fixed: Feature List Image issue
|
1025 |
+
- Fixed: Ninja Form Radio & Checkbox styles are not working
|
1026 |
- Fixed: Post Grid | Random Order shows duplicate posts when Load More is used
|
1027 |
- Fixed: Lightbox & Modal > Close Button positioning issue
|
1028 |
- Improvements: Advanced Tabs responsiveness
|
1030 |
- Few minor bugfix and improvements
|
1031 |
|
1032 |
= 3.6.2 - 09/12/2019 =
|
1033 |
+
- Bugfix: Product grid responsive issue
|
1034 |
- Bugfix: 404 page assets loading
|
1035 |
- Bugfix: Data Table | Content Alignment (left/right)
|
1036 |
- Bugfix: Fancy text > not showing animation on edit mode
|
1070 |
|
1071 |
= 3.5.0 - 30/10/2019 =
|
1072 |
- Added : Facebook Feed widget with new graph API
|
1073 |
+
- Improved : Asset loading protocol
|
1074 |
- Bug fix: Query settings not updated (edited)
|
1075 |
- Bug fix: Query not working for export/import
|
1076 |
- Bug fix: Reading progress showing if disabled from settings panel
|
1098 |
- Few minor bugfix and improvements
|
1099 |
|
1100 |
= 3.3.2 - 26/09/2019 =
|
1101 |
+
- Added : Filterable Gallery new layout (Search & Filter)
|
1102 |
- Added: Post elements excerpt expanison indicator option field
|
1103 |
- Fixed: Post Grid hover not working
|
1104 |
- Fixed: Createive Button options not showing
|
1164 |
|
1165 |
= 3.0.3 - 04/06/2019 =
|
1166 |
- Fixed : Filterable Gallery button show without title
|
1167 |
+
- Fixed : Pricing Table mobile price overlaping issue
|
1168 |
- Fixed : ImageLoaded broken path
|
1169 |
- Fixed : Gravity Form inline spacing issue
|
1170 |
- Enhanced : Team Member social icons spacing control added
|
1260 |
= 2.8.7 - 24/12/2018 =
|
1261 |
|
1262 |
- Added : Version rollback option
|
1263 |
+
- Fixed : Data Table border issue
|
1264 |
- Fixed : EA Flipbox font color doesn't change for the rear one
|
1265 |
- Fixed : EA Fancy text loop settings not working
|
1266 |
- Fixed : Filterable gallery layout issue
|
1368 |
|
1369 |
- Countdown element improved and Expire action added
|
1370 |
- Post Grid and Post Timeline query optimized and load more improved
|
1371 |
+
- Post Grid Masonry improved
|
1372 |
- Info Box layout improved and more options added
|
1373 |
- Content Ticker improved
|
1374 |
- Data Table responsiveness improved
|
1515 |
- Info Box element added.
|
1516 |
- Flip Box element added.
|
1517 |
- Dual color headline element added.
|
1518 |
+
- Few minor bug fixes and improvements.
|
1519 |
|
1520 |
= 1.1.0 - 15/08/2017 =
|
1521 |
|