Version Description
- Image Accordion styling issue fixed
- Post Grid load more issue fixed
- Post Timeline load more issue fixed
- Few minor bugfix and improvements
Download this release
Release Info
Developer | re_enter_rupok |
Plugin | Elementor Essential Addons |
Version | 2.8.1 |
Comparing to | |
See all releases |
Code changes from version 2.8.0 to 2.8.1
- admin/settings.php +0 -0
- assets/css/essential-addons-elementor.css +104 -0
- assets/js/eael-scripts.js +1 -1
- assets/js/load-more.js +0 -0
- elements/filterable-gallery/filterable-gallery.php +1 -1
- elements/post-grid/post-grid.php +0 -0
- essential_adons_elementor.php +1 -1
- includes/elementor-helper.php +2 -2
- includes/queries.php +0 -0
- readme.txt +9 -2
admin/settings.php
CHANGED
File without changes
|
assets/css/essential-addons-elementor.css
CHANGED
@@ -1774,6 +1774,12 @@ body:not(.x-ethos):not(.x-integrity):not(.x-renew):not(.x-icon) .eael-product-ca
|
|
1774 |
justify-content: center;
|
1775 |
}
|
1776 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1777 |
.eael-load-more-button .button__loader {
|
1778 |
left: -100%;
|
1779 |
top: auto;
|
@@ -5462,3 +5468,101 @@ div[data-preset="rainbow"] .ldBar-label {
|
|
5462 |
top: -20px;
|
5463 |
right: 0;
|
5464 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1774 |
justify-content: center;
|
1775 |
}
|
1776 |
|
1777 |
+
.eael-load-more-button {
|
1778 |
+
padding: 1em 2em;
|
1779 |
+
border: 0px solid;
|
1780 |
+
font-size: 16px;
|
1781 |
+
}
|
1782 |
+
|
1783 |
.eael-load-more-button .button__loader {
|
1784 |
left: -100%;
|
1785 |
top: auto;
|
5468 |
top: -20px;
|
5469 |
right: 0;
|
5470 |
}
|
5471 |
+
|
5472 |
+
/*------------------------------*/
|
5473 |
+
/* Image accordion
|
5474 |
+
/*------------------------------*/
|
5475 |
+
.eael-img-accordion {
|
5476 |
+
display: flex;
|
5477 |
+
height: 50vh;
|
5478 |
+
}
|
5479 |
+
|
5480 |
+
.eael-img-accordion a {
|
5481 |
+
position: relative;
|
5482 |
+
flex: 1;
|
5483 |
+
text-align: center;
|
5484 |
+
text-decoration: none;
|
5485 |
+
color: #fff;
|
5486 |
+
background-size: cover;
|
5487 |
+
background-position: center;
|
5488 |
+
background-repeat: no-repeat;
|
5489 |
+
transition: flex .4s;
|
5490 |
+
}
|
5491 |
+
|
5492 |
+
.eael-grow-accordion {
|
5493 |
+
flex: 3;
|
5494 |
+
}
|
5495 |
+
|
5496 |
+
.eael-img-accordion .overlay {
|
5497 |
+
display: flex;
|
5498 |
+
align-items: center;
|
5499 |
+
justify-content: center;
|
5500 |
+
padding: 0 10px;
|
5501 |
+
position: absolute;
|
5502 |
+
top: 0;
|
5503 |
+
right: 0;
|
5504 |
+
bottom: 0;
|
5505 |
+
left: 0;
|
5506 |
+
transition: background-color .4s;
|
5507 |
+
}
|
5508 |
+
|
5509 |
+
.eael-img-accordion .overlay .overlay-inner {
|
5510 |
+
z-index: 1;
|
5511 |
+
}
|
5512 |
+
|
5513 |
+
.eael-img-accordion a:after {
|
5514 |
+
content: "";
|
5515 |
+
position: absolute;
|
5516 |
+
width: 100%;
|
5517 |
+
height: 100%;
|
5518 |
+
z-index: 0;
|
5519 |
+
top: 0px;
|
5520 |
+
left: 0px;
|
5521 |
+
bottom: 0px;
|
5522 |
+
right: 0px;
|
5523 |
+
transition: all 0.3s ease-in-out;
|
5524 |
+
}
|
5525 |
+
|
5526 |
+
.eael-img-accordion .overlay-inner * {
|
5527 |
+
visibility: hidden;
|
5528 |
+
opacity: 0;
|
5529 |
+
transform-style: preserve-3d;
|
5530 |
+
}
|
5531 |
+
|
5532 |
+
.eael-img-accordion .overlay h2 {
|
5533 |
+
color: #fff;
|
5534 |
+
transform: translate3d(0, -60px, 0);
|
5535 |
+
}
|
5536 |
+
|
5537 |
+
.eael-img-accordion .overlay p {
|
5538 |
+
color: #fff;
|
5539 |
+
transform: translate3d(0, 60px, 0);
|
5540 |
+
}
|
5541 |
+
|
5542 |
+
.eael-img-accordion .overlay-inner-show * {
|
5543 |
+
opacity: 1;
|
5544 |
+
visibility: visible;
|
5545 |
+
transform: none !important;
|
5546 |
+
transition: all .3s .3s;
|
5547 |
+
}
|
5548 |
+
|
5549 |
+
@media screen and (max-width: 800px) {
|
5550 |
+
.eael-img-accordion {
|
5551 |
+
flex-direction: column;
|
5552 |
+
}
|
5553 |
+
|
5554 |
+
.eael-img-accordion a:hover {
|
5555 |
+
flex: 1;
|
5556 |
+
}
|
5557 |
+
|
5558 |
+
.eael-img-accordion a:hover .overlay {
|
5559 |
+
background-color: transparent;
|
5560 |
+
}
|
5561 |
+
|
5562 |
+
.eael-img-accordion .overlay h2,
|
5563 |
+
.eael-img-accordion .overlay p {
|
5564 |
+
opacity: 1;
|
5565 |
+
visibility: visible;
|
5566 |
+
transform: none;
|
5567 |
+
}
|
5568 |
+
}
|
assets/js/eael-scripts.js
CHANGED
@@ -427,7 +427,7 @@
|
|
427 |
exclude_posts: $exclude_posts,
|
428 |
}
|
429 |
|
430 |
-
|
431 |
}
|
432 |
|
433 |
var ContentTicker = function ($scope, $) {
|
427 |
exclude_posts: $exclude_posts,
|
428 |
}
|
429 |
|
430 |
+
eaelLoadMore( options, settings );
|
431 |
}
|
432 |
|
433 |
var ContentTicker = function ($scope, $) {
|
assets/js/load-more.js
CHANGED
File without changes
|
elements/filterable-gallery/filterable-gallery.php
CHANGED
@@ -1686,7 +1686,7 @@ class Widget_Eael_Filterable_Gallery extends Widget_Base {
|
|
1686 |
public function sorter_class( $string ) {
|
1687 |
$sorter_class = strtolower( $string );
|
1688 |
$sorter_class = str_replace(' ', '-', $sorter_class);
|
1689 |
-
$sorter_class = str_replace(',-', ' ', $sorter_class);
|
1690 |
$sorter_class = str_replace(',', ' ', $sorter_class);
|
1691 |
return $sorter_class;
|
1692 |
}
|
1686 |
public function sorter_class( $string ) {
|
1687 |
$sorter_class = strtolower( $string );
|
1688 |
$sorter_class = str_replace(' ', '-', $sorter_class);
|
1689 |
+
$sorter_class = str_replace(',-', ' eael-cf-', $sorter_class);
|
1690 |
$sorter_class = str_replace(',', ' ', $sorter_class);
|
1691 |
return $sorter_class;
|
1692 |
}
|
elements/post-grid/post-grid.php
CHANGED
File without changes
|
essential_adons_elementor.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Description: The ultimate elements library for Elementor page builder plugin for WordPress.
|
5 |
* Plugin URI: https://essential-addons.com/elementor/
|
6 |
* Author: WPDeveloper
|
7 |
-
* Version: 2.8.
|
8 |
* Author URI: https://wpdeveloper.net/
|
9 |
*
|
10 |
* Text Domain: essential-addons-elementor
|
4 |
* Description: The ultimate elements library for Elementor page builder plugin for WordPress.
|
5 |
* Plugin URI: https://essential-addons.com/elementor/
|
6 |
* Author: WPDeveloper
|
7 |
+
* Version: 2.8.1
|
8 |
* Author URI: https://wpdeveloper.net/
|
9 |
*
|
10 |
* Text Domain: essential-addons-elementor
|
includes/elementor-helper.php
CHANGED
@@ -59,7 +59,7 @@ trait ElementsCommonFunctions {
|
|
59 |
|
60 |
if( 'eael-content-timeline' === $this->get_name() ) {
|
61 |
$this->start_controls_section(
|
62 |
-
'
|
63 |
[
|
64 |
'label' => __( 'Dynamic Content Settings', 'essential-addons-elementor' ),
|
65 |
'condition' => [
|
@@ -71,7 +71,7 @@ trait ElementsCommonFunctions {
|
|
71 |
|
72 |
if( 'eael-content-timeline' !== $this->get_name() && 'eael-content-ticker' !== $this->get_name() ) {
|
73 |
$this->start_controls_section(
|
74 |
-
'
|
75 |
[
|
76 |
'label' => __( 'Query', 'essential-addons-elementor' ),
|
77 |
]
|
59 |
|
60 |
if( 'eael-content-timeline' === $this->get_name() ) {
|
61 |
$this->start_controls_section(
|
62 |
+
'eael_section_timeline__filters',
|
63 |
[
|
64 |
'label' => __( 'Dynamic Content Settings', 'essential-addons-elementor' ),
|
65 |
'condition' => [
|
71 |
|
72 |
if( 'eael-content-timeline' !== $this->get_name() && 'eael-content-ticker' !== $this->get_name() ) {
|
73 |
$this->start_controls_section(
|
74 |
+
'eael_section_post__filters',
|
75 |
[
|
76 |
'label' => __( 'Query', 'essential-addons-elementor' ),
|
77 |
]
|
includes/queries.php
CHANGED
File without changes
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: elementor, elements, addons, elementor addon, elementor widget, page build
|
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 4.9.8
|
6 |
Requires PHP: 5.4
|
7 |
-
Stable tag: 2.8.
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
@@ -68,6 +68,7 @@ We have designed 29 of the most useful widgets to enhance your Elementor Page Bu
|
|
68 |
26. [Tooltip](https://essential-addons.com/elementor/tooltip/) - Set tooltip for Icon, Image, Text or shortcodes
|
69 |
27. [Advanced Tabs](https://essential-addons.com/elementor/advanced-tabs/) - Include tab to put information in different styles. Supports nested tabs.
|
70 |
28. [Advanced Accordion](https://essential-addons.com/elementor/advanced-accordion/) - Add beautiful accordions in your pages, posts, and anywhere. Supports nested accordions.
|
|
|
71 |
|
72 |
|
73 |
### More elements (27+) on [Premium Version](https://essential-addons.com/elementor/buy.php)
|
@@ -99,7 +100,7 @@ We have designed 29 of the most useful widgets to enhance your Elementor Page Bu
|
|
99 |
25. [Post Carousel](https://essential-addons.com/elementor/post-carousel/) - Even you can create carousel from your posts
|
100 |
26. [Logo Carousel](https://essential-addons.com/elementor/logo-carousel/) - Highlight brands/product logos in carousel
|
101 |
27. [Protected Content](https://essential-addons.com/elementor/protected-content/) - Lock your content with password and allow only selected people to see it
|
102 |
-
|
103 |
|
104 |
More coming soon (weekly update) ...
|
105 |
|
@@ -157,6 +158,12 @@ Your existing elements/content will work with premium version. So you won't lose
|
|
157 |
|
158 |
== Changelog ==
|
159 |
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
= 2.8.0 =
|
161 |
- Progress Bar widget added
|
162 |
- Video card support added to Filterable Gallery
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 4.9.8
|
6 |
Requires PHP: 5.4
|
7 |
+
Stable tag: 2.8.1
|
8 |
License: GPLv3
|
9 |
License URI: https://opensource.org/licenses/GPL-3.0
|
10 |
|
68 |
26. [Tooltip](https://essential-addons.com/elementor/tooltip/) - Set tooltip for Icon, Image, Text or shortcodes
|
69 |
27. [Advanced Tabs](https://essential-addons.com/elementor/advanced-tabs/) - Include tab to put information in different styles. Supports nested tabs.
|
70 |
28. [Advanced Accordion](https://essential-addons.com/elementor/advanced-accordion/) - Add beautiful accordions in your pages, posts, and anywhere. Supports nested accordions.
|
71 |
+
29. [Progress Bar](https://essential-addons.com/elementor/progress-bar/) - Display progress bars with 4+ different styles
|
72 |
|
73 |
|
74 |
### More elements (27+) on [Premium Version](https://essential-addons.com/elementor/buy.php)
|
100 |
25. [Post Carousel](https://essential-addons.com/elementor/post-carousel/) - Even you can create carousel from your posts
|
101 |
26. [Logo Carousel](https://essential-addons.com/elementor/logo-carousel/) - Highlight brands/product logos in carousel
|
102 |
27. [Protected Content](https://essential-addons.com/elementor/protected-content/) - Lock your content with password and allow only selected people to see it
|
103 |
+
|
104 |
|
105 |
More coming soon (weekly update) ...
|
106 |
|
158 |
|
159 |
== Changelog ==
|
160 |
|
161 |
+
= 2.8.1 =
|
162 |
+
- Image Accordion styling issue fixed
|
163 |
+
- Post Grid load more issue fixed
|
164 |
+
- Post Timeline load more issue fixed
|
165 |
+
- Few minor bugfix and improvements
|
166 |
+
|
167 |
= 2.8.0 =
|
168 |
- Progress Bar widget added
|
169 |
- Video card support added to Filterable Gallery
|