Version Description
- 03/11/2020 =
- Fixed: EA Post Grid | PHP notice for Title Tag
- Few minor bug fix and improvements
Download this release
Release Info
Developer | re_enter_rupok |
Plugin | Elementor Essential Addons |
Version | 4.3.5 |
Comparing to | |
See all releases |
Code changes from version 4.3.4 to 4.3.5
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: 4.3.
|
8 |
* Author URI: https://wpdeveloper.net/
|
9 |
* Text Domain: essential-addons-for-elementor-lite
|
10 |
* Domain Path: /languages
|
@@ -25,7 +25,7 @@ define('EAEL_PLUGIN_FILE', __FILE__);
|
|
25 |
define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
26 |
define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
|
27 |
define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
|
28 |
-
define('EAEL_PLUGIN_VERSION', '4.3.
|
29 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
30 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
31 |
/**
|
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: 4.3.5
|
8 |
* Author URI: https://wpdeveloper.net/
|
9 |
* Text Domain: essential-addons-for-elementor-lite
|
10 |
* Domain Path: /languages
|
25 |
define('EAEL_PLUGIN_BASENAME', plugin_basename(__FILE__));
|
26 |
define('EAEL_PLUGIN_PATH', trailingslashit(plugin_dir_path(__FILE__)));
|
27 |
define('EAEL_PLUGIN_URL', trailingslashit(plugins_url('/', __FILE__)));
|
28 |
+
define('EAEL_PLUGIN_VERSION', '4.3.5');
|
29 |
define('EAEL_ASSET_PATH', wp_upload_dir()['basedir'] . '/essential-addons-elementor');
|
30 |
define('EAEL_ASSET_URL', wp_upload_dir()['baseurl'] . '/essential-addons-elementor');
|
31 |
/**
|
includes/Template/Post-Grid/default.php
CHANGED
@@ -10,6 +10,8 @@ if (!defined('ABSPATH')) {
|
|
10 |
exit;
|
11 |
} // Exit if accessed directly
|
12 |
|
|
|
|
|
13 |
if ($settings['eael_post_grid_preset_style'] === 'two') {
|
14 |
echo '<article class="eael-grid-post eael-post-grid-column" data-id="' . get_the_ID() . '">
|
15 |
<div class="eael-grid-post-holder">
|
@@ -43,7 +45,7 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
43 |
if ($settings['eael_show_title'] || $settings['eael_show_meta'] || $settings['eael_show_excerpt']) {
|
44 |
echo '<div class="eael-entry-wrapper">';
|
45 |
if ($settings['eael_show_title']) {
|
46 |
-
echo '<header class="eael-entry-header"><' . $
|
47 |
echo '<a
|
48 |
class="eael-grid-post-link"
|
49 |
href="' . get_the_permalink() . '"
|
@@ -58,7 +60,7 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
58 |
echo implode(" ", array_slice(explode(" ", get_the_title()), 0, $settings['eael_title_length']));
|
59 |
}
|
60 |
echo '</a>';
|
61 |
-
echo '</' . $
|
62 |
}
|
63 |
|
64 |
if ($settings['meta_position'] == 'meta-entry-header') {
|
@@ -177,7 +179,7 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
177 |
echo '<div class="eael-entry-wrapper">';
|
178 |
|
179 |
if ($settings['eael_show_title']) {
|
180 |
-
echo '<header class="eael-entry-header"><' . $
|
181 |
echo '<a
|
182 |
class="eael-grid-post-link"
|
183 |
href="' . get_the_permalink() . '"
|
@@ -192,7 +194,7 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
192 |
echo implode(" ", array_slice(explode(" ", get_the_title()), 0, $settings['eael_title_length']));
|
193 |
}
|
194 |
echo '</a>';
|
195 |
-
echo '</' . $
|
196 |
}
|
197 |
|
198 |
if ($settings['meta_position'] == 'meta-entry-footer') {
|
@@ -275,7 +277,7 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
275 |
if ($settings['eael_show_title'] || $settings['eael_show_meta'] || $settings['eael_show_excerpt']) {
|
276 |
echo '<div class="eael-entry-wrapper">';
|
277 |
if ($settings['eael_show_title']) {
|
278 |
-
echo '<header class="eael-entry-header"><' . $
|
279 |
echo '<a
|
280 |
class="eael-grid-post-link"
|
281 |
href="' . get_the_permalink() . '"
|
@@ -290,7 +292,7 @@ if ($settings['eael_post_grid_preset_style'] === 'two') {
|
|
290 |
echo implode(" ", array_slice(explode(" ", get_the_title()), 0, $settings['eael_title_length']));
|
291 |
}
|
292 |
echo '</a>';
|
293 |
-
echo '</' . $
|
294 |
}
|
295 |
if ($settings['meta_position'] == 'meta-entry-header') {
|
296 |
if ($settings['eael_show_meta']) {
|
10 |
exit;
|
11 |
} // Exit if accessed directly
|
12 |
|
13 |
+
$title_tag = isset($settings['title_tag']) ? $settings['title_tag'] : 'h2';
|
14 |
+
|
15 |
if ($settings['eael_post_grid_preset_style'] === 'two') {
|
16 |
echo '<article class="eael-grid-post eael-post-grid-column" data-id="' . get_the_ID() . '">
|
17 |
<div class="eael-grid-post-holder">
|
45 |
if ($settings['eael_show_title'] || $settings['eael_show_meta'] || $settings['eael_show_excerpt']) {
|
46 |
echo '<div class="eael-entry-wrapper">';
|
47 |
if ($settings['eael_show_title']) {
|
48 |
+
echo '<header class="eael-entry-header"><' . $title_tag . ' class="eael-entry-title">';
|
49 |
echo '<a
|
50 |
class="eael-grid-post-link"
|
51 |
href="' . get_the_permalink() . '"
|
60 |
echo implode(" ", array_slice(explode(" ", get_the_title()), 0, $settings['eael_title_length']));
|
61 |
}
|
62 |
echo '</a>';
|
63 |
+
echo '</' . $title_tag . '></header>';
|
64 |
}
|
65 |
|
66 |
if ($settings['meta_position'] == 'meta-entry-header') {
|
179 |
echo '<div class="eael-entry-wrapper">';
|
180 |
|
181 |
if ($settings['eael_show_title']) {
|
182 |
+
echo '<header class="eael-entry-header"><' . $title_tag . ' class="eael-entry-title">';
|
183 |
echo '<a
|
184 |
class="eael-grid-post-link"
|
185 |
href="' . get_the_permalink() . '"
|
194 |
echo implode(" ", array_slice(explode(" ", get_the_title()), 0, $settings['eael_title_length']));
|
195 |
}
|
196 |
echo '</a>';
|
197 |
+
echo '</' . $title_tag . '></header>';
|
198 |
}
|
199 |
|
200 |
if ($settings['meta_position'] == 'meta-entry-footer') {
|
277 |
if ($settings['eael_show_title'] || $settings['eael_show_meta'] || $settings['eael_show_excerpt']) {
|
278 |
echo '<div class="eael-entry-wrapper">';
|
279 |
if ($settings['eael_show_title']) {
|
280 |
+
echo '<header class="eael-entry-header"><' . $title_tag . ' class="eael-entry-title">';
|
281 |
echo '<a
|
282 |
class="eael-grid-post-link"
|
283 |
href="' . get_the_permalink() . '"
|
292 |
echo implode(" ", array_slice(explode(" ", get_the_title()), 0, $settings['eael_title_length']));
|
293 |
}
|
294 |
echo '</a>';
|
295 |
+
echo '</' . $title_tag . '></header>';
|
296 |
}
|
297 |
if ($settings['meta_position'] == 'meta-entry-header') {
|
298 |
if ($settings['eael_show_meta']) {
|
languages/essential-addons-for-elementor-lite.pot
CHANGED
@@ -692,7 +692,7 @@ msgstr ""
|
|
692 |
msgid "Show Title"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:180, ../includes/Elements/Betterdocs_Category_Grid.php:218, ../includes/Elements/Cta_Box.php:186, ../includes/Elements/Image_Accordion.php:139
|
696 |
msgid "Select Tag"
|
697 |
msgstr ""
|
698 |
|
@@ -764,7 +764,7 @@ msgstr ""
|
|
764 |
msgid "File Not Found"
|
765 |
msgstr ""
|
766 |
|
767 |
-
#: ../includes/Elements/Betterdocs_Category_Box.php:1180, ../includes/Elements/Betterdocs_Category_Box.php:1145, ../includes/Elements/Betterdocs_Category_Grid.php:1676, ../includes/Elements/Betterdocs_Category_Grid.php:1643, ../includes/Elements/Post_Grid.php:
|
768 |
msgid "<p class=\"no-posts-found\">No posts found!</p>"
|
769 |
msgstr ""
|
770 |
|
@@ -976,7 +976,7 @@ msgstr ""
|
|
976 |
msgid "Form Alignment"
|
977 |
msgstr ""
|
978 |
|
979 |
-
#: ../includes/Elements/Caldera_Forms.php:405, ../includes/Elements/Contact_Form_7.php:321, ../includes/Elements/Contact_Form_7.php:822, ../includes/Elements/Creative_Button.php:210, ../includes/Elements/Cta_Box.php:629, ../includes/Elements/Cta_Box.php:846, ../includes/Elements/Dual_Color_Header.php:78, ../includes/Elements/Flip_Box.php:687, ../includes/Elements/FluentForm.php:424, ../includes/Elements/Formstack.php:324, ../includes/Elements/GravityForms.php:337, ../includes/Elements/Login_Register.php:412, ../includes/Elements/Login_Register.php:509, ../includes/Elements/Login_Register.php:1046, ../includes/Elements/Login_Register.php:1402, ../includes/Elements/Login_Register.php:1528, ../includes/Elements/Login_Register.php:1785, ../includes/Elements/Login_Register.php:1929, ../includes/Elements/Login_Register.php:2079, ../includes/Elements/Login_Register.php:2222, ../includes/Elements/Login_Register.php:2313, ../includes/Elements/Login_Register.php:2411, ../includes/Elements/Login_Register.php:2612, ../includes/Elements/Login_Register.php:2657, ../includes/Elements/Login_Register.php:2689, ../includes/Elements/Login_Register.php:2955, ../includes/Elements/Login_Register.php:3254, ../includes/Elements/NinjaForms.php:272, ../includes/Elements/Post_Grid.php:234, ../includes/Elements/Pricing_Table.php:83, ../includes/Elements/Pricing_Table.php:419, ../includes/Elements/Product_Grid.php:261, ../includes/Elements/Team_Member.php:357, ../includes/Elements/Testimonial.php:252, ../includes/Elements/Testimonial.php:271, ../includes/Elements/TypeForm.php:196, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:119, ../includes/Elements/WpForms.php:261, ../includes/Traits/Controls.php:453, ../includes/Traits/Controls.php:1402, ../includes/Traits/Login_Registration.php:528, ../includes/Template/Betterdocs-Category-Box/Layout_Default.php:4, ../includes/Template/Betterdocs-Category-Grid/Layout_Default.php:4, ../includes/Template/Eicon-Woocommerce/default.php:3, ../includes/Template/Post-Grid/default.php:4, ../includes/Template/Post-Timeline/default.php:3
|
980 |
msgid "Default"
|
981 |
msgstr ""
|
982 |
|
@@ -1188,7 +1188,7 @@ msgstr ""
|
|
1188 |
msgid "Template Layout"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: ../includes/Elements/Content_Ticker.php:90, ../includes/Elements/Progress_Bar.php:155, ../includes/Traits/Controls.php:30
|
1192 |
msgid "Dynamic"
|
1193 |
msgstr ""
|
1194 |
|
@@ -1928,7 +1928,7 @@ msgstr ""
|
|
1928 |
msgid "Show Separator"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#: ../includes/Elements/Dual_Color_Header.php:131
|
1932 |
msgid "Title Tag"
|
1933 |
msgstr ""
|
1934 |
|
@@ -4650,7 +4650,7 @@ msgstr ""
|
|
4650 |
msgid "Icon font size"
|
4651 |
msgstr ""
|
4652 |
|
4653 |
-
#: ../includes/Elements/Post_Grid.php:
|
4654 |
msgid "<p class=\"no-posts-found\">No Layout Found!</p>"
|
4655 |
msgstr ""
|
4656 |
|
@@ -4714,7 +4714,7 @@ msgstr ""
|
|
4714 |
msgid "Date Text Color"
|
4715 |
msgstr ""
|
4716 |
|
4717 |
-
#: ../includes/Elements/Post_Timeline.php:470, ../includes/Elements/Product_Grid.php:
|
4718 |
msgid "<p class=\"no-posts-found\">No layout found!</p>"
|
4719 |
msgstr ""
|
4720 |
|
692 |
msgid "Show Title"
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:180, ../includes/Elements/Betterdocs_Category_Grid.php:218, ../includes/Elements/Cta_Box.php:186, ../includes/Elements/Image_Accordion.php:139
|
696 |
msgid "Select Tag"
|
697 |
msgstr ""
|
698 |
|
764 |
msgid "File Not Found"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: ../includes/Elements/Betterdocs_Category_Box.php:1180, ../includes/Elements/Betterdocs_Category_Box.php:1145, ../includes/Elements/Betterdocs_Category_Grid.php:1676, ../includes/Elements/Betterdocs_Category_Grid.php:1643, ../includes/Elements/Post_Grid.php:1076, ../includes/Elements/Post_Timeline.php:466, ../includes/Elements/Product_Grid.php:997
|
768 |
msgid "<p class=\"no-posts-found\">No posts found!</p>"
|
769 |
msgstr ""
|
770 |
|
976 |
msgid "Form Alignment"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: ../includes/Elements/Caldera_Forms.php:405, ../includes/Elements/Contact_Form_7.php:321, ../includes/Elements/Contact_Form_7.php:822, ../includes/Elements/Creative_Button.php:210, ../includes/Elements/Cta_Box.php:629, ../includes/Elements/Cta_Box.php:846, ../includes/Elements/Dual_Color_Header.php:78, ../includes/Elements/Flip_Box.php:687, ../includes/Elements/FluentForm.php:424, ../includes/Elements/Formstack.php:324, ../includes/Elements/GravityForms.php:337, ../includes/Elements/Login_Register.php:412, ../includes/Elements/Login_Register.php:509, ../includes/Elements/Login_Register.php:1046, ../includes/Elements/Login_Register.php:1402, ../includes/Elements/Login_Register.php:1528, ../includes/Elements/Login_Register.php:1785, ../includes/Elements/Login_Register.php:1929, ../includes/Elements/Login_Register.php:2079, ../includes/Elements/Login_Register.php:2222, ../includes/Elements/Login_Register.php:2313, ../includes/Elements/Login_Register.php:2411, ../includes/Elements/Login_Register.php:2612, ../includes/Elements/Login_Register.php:2657, ../includes/Elements/Login_Register.php:2689, ../includes/Elements/Login_Register.php:2955, ../includes/Elements/Login_Register.php:3254, ../includes/Elements/NinjaForms.php:272, ../includes/Elements/Post_Grid.php:234, ../includes/Elements/Pricing_Table.php:83, ../includes/Elements/Pricing_Table.php:419, ../includes/Elements/Product_Grid.php:261, ../includes/Elements/Team_Member.php:357, ../includes/Elements/Testimonial.php:252, ../includes/Elements/Testimonial.php:271, ../includes/Elements/TypeForm.php:196, ../includes/Elements/WeForms.php:161, ../includes/Elements/WeForms.php:631, ../includes/Elements/Woo_Checkout.php:119, ../includes/Elements/WpForms.php:261, ../includes/Traits/Controls.php:453, ../includes/Traits/Controls.php:1402, ../includes/Traits/Login_Registration.php:528, ../includes/Template/Betterdocs-Category-Box/Layout_Default.php:4, ../includes/Template/Betterdocs-Category-Grid/Layout_Default.php:4, ../includes/Template/Content-Ticker/default.php:3, ../includes/Template/Eicon-Woocommerce/default.php:3, ../includes/Template/Post-Grid/default.php:4, ../includes/Template/Post-Timeline/default.php:3
|
980 |
msgid "Default"
|
981 |
msgstr ""
|
982 |
|
1188 |
msgid "Template Layout"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: ../includes/Elements/Content_Ticker.php:90, ../includes/Elements/Progress_Bar.php:155, ../includes/Traits/Controls.php:30
|
1192 |
msgid "Dynamic"
|
1193 |
msgstr ""
|
1194 |
|
1928 |
msgid "Show Separator"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: ../includes/Elements/Dual_Color_Header.php:131, ../includes/Traits/Controls.php:653
|
1932 |
msgid "Title Tag"
|
1933 |
msgstr ""
|
1934 |
|
4650 |
msgid "Icon font size"
|
4651 |
msgstr ""
|
4652 |
|
4653 |
+
#: ../includes/Elements/Post_Grid.php:1080
|
4654 |
msgid "<p class=\"no-posts-found\">No Layout Found!</p>"
|
4655 |
msgstr ""
|
4656 |
|
4714 |
msgid "Date Text Color"
|
4715 |
msgstr ""
|
4716 |
|
4717 |
+
#: ../includes/Elements/Post_Timeline.php:470, ../includes/Elements/Product_Grid.php:1001
|
4718 |
msgid "<p class=\"no-posts-found\">No layout found!</p>"
|
4719 |
msgstr ""
|
4720 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: elementor, elements, addons, elementor addon, elementor widget, elementor
|
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 5.5
|
6 |
Requires PHP: 5.4
|
7 |
-
Stable tag: 4.3.
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
@@ -224,6 +224,10 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
224 |
|
225 |
== Changelog ==
|
226 |
|
|
|
|
|
|
|
|
|
227 |
= 4.3.4 - 02/11/2020 =
|
228 |
- Fixed: EA Post Grid | Title Tag not working
|
229 |
- Fixed: EA Product Grid | Displaying 'Out of Stock' products even if it's disabled from WooCommerce
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 5.5
|
6 |
Requires PHP: 5.4
|
7 |
+
Stable tag: 4.3.5
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
224 |
|
225 |
== Changelog ==
|
226 |
|
227 |
+
= 4.3.5 - 03/11/2020 =
|
228 |
+
- Fixed: EA Post Grid | PHP notice for Title Tag
|
229 |
+
- Few minor bug fix and improvements
|
230 |
+
|
231 |
= 4.3.4 - 02/11/2020 =
|
232 |
- Fixed: EA Post Grid | Title Tag not working
|
233 |
- Fixed: EA Product Grid | Displaying 'Out of Stock' products even if it's disabled from WooCommerce
|