Version Description
24 July 2019 =
Fix: Elementor 2.6.* version compatibility issue
Download this release
Release Info
Developer | thehappymonster |
Plugin | Happy Addons for Elementor (Mega Menu, Post Grid, Woocommerce Product Grid, Table, Event Calendar, Slider Elementor Widget) |
Version | 1.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.3.0 to 1.3.1
- base.php +1 -1
- base/widget-base.php +11 -0
- plugin.php +1 -1
- readme.txt +5 -1
base.php
CHANGED
@@ -14,7 +14,7 @@ defined( 'ABSPATH' ) || die();
|
|
14 |
|
15 |
class Base {
|
16 |
|
17 |
-
const VERSION = '1.3.
|
18 |
|
19 |
const MINIMUM_ELEMENTOR_VERSION = '2.5.0';
|
20 |
|
14 |
|
15 |
class Base {
|
16 |
|
17 |
+
const VERSION = '1.3.1';
|
18 |
|
19 |
const MINIMUM_ELEMENTOR_VERSION = '2.5.0';
|
20 |
|
base/widget-base.php
CHANGED
@@ -114,4 +114,15 @@ abstract class Base extends Widget_Base {
|
|
114 |
* @return void
|
115 |
*/
|
116 |
abstract protected function register_style_controls();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
}
|
114 |
* @return void
|
115 |
*/
|
116 |
abstract protected function register_style_controls();
|
117 |
+
|
118 |
+
/**
|
119 |
+
* Fix for 2.6.*
|
120 |
+
*
|
121 |
+
* In 2.6.0 Elementor removed render_edit_tools method.
|
122 |
+
*/
|
123 |
+
protected function render_edit_tools() {
|
124 |
+
if ( version_compare( ELEMENTOR_VERSION, '2.5.16', '<=' ) ) {
|
125 |
+
parent::render_edit_tools();
|
126 |
+
}
|
127 |
+
}
|
128 |
}
|
plugin.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Happy Elementor Addons
|
4 |
* Plugin URI: https://happyaddons.com/
|
5 |
* Description: <a href="https://happyaddons.com/">HappyAddons</a> is a collection of slick, powerful widgets that works seamlessly with Elementor page builder. It’s trendy look with detail customization features allows to create extraordinary designs instantly. <a href="https://happyaddons.com/">HappyAddons</a> is free, rapidly growing and comes with great support.
|
6 |
-
* Version: 1.3.
|
7 |
* Author: HappyMonster
|
8 |
* Author URI: https://happyaddons.com/
|
9 |
* License: GPLv2
|
3 |
* Plugin Name: Happy Elementor Addons
|
4 |
* Plugin URI: https://happyaddons.com/
|
5 |
* Description: <a href="https://happyaddons.com/">HappyAddons</a> is a collection of slick, powerful widgets that works seamlessly with Elementor page builder. It’s trendy look with detail customization features allows to create extraordinary designs instantly. <a href="https://happyaddons.com/">HappyAddons</a> is free, rapidly growing and comes with great support.
|
6 |
+
* Version: 1.3.1
|
7 |
* Author: HappyMonster
|
8 |
* Author URI: https://happyaddons.com/
|
9 |
* License: GPLv2
|
readme.txt
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
=== Happy Elementor Addons ===
|
2 |
Plugin Name: Happy Elementor Addons
|
3 |
-
Version: 1.3.
|
4 |
Author: HappyMonster
|
5 |
Author URI: https://happyaddons.com/
|
6 |
Contributors: thehappymonster, happyaddons, hasinhayder, mosaddek73, tareq1988, obiplabon, sourav926, wedevs
|
@@ -130,6 +130,10 @@ It's really easy and super simple to install **Happy Elementor Addons** plugin b
|
|
130 |
|
131 |
== Changelog ==
|
132 |
|
|
|
|
|
|
|
|
|
133 |
= 1.3.0 - 23 July 2019 =
|
134 |
|
135 |
* New: Carousel Widget
|
1 |
=== Happy Elementor Addons ===
|
2 |
Plugin Name: Happy Elementor Addons
|
3 |
+
Version: 1.3.1
|
4 |
Author: HappyMonster
|
5 |
Author URI: https://happyaddons.com/
|
6 |
Contributors: thehappymonster, happyaddons, hasinhayder, mosaddek73, tareq1988, obiplabon, sourav926, wedevs
|
130 |
|
131 |
== Changelog ==
|
132 |
|
133 |
+
= 1.3.1 - 24 July 2019 =
|
134 |
+
|
135 |
+
* Fix: Elementor 2.6.* version compatibility issue
|
136 |
+
|
137 |
= 1.3.0 - 23 July 2019 =
|
138 |
|
139 |
* New: Carousel Widget
|