Version Description
- Fixed - Livemesh Item and Livemesh Grid instances not being listed in the theme builder
Download this release
Release Info
Developer | livemesh |
Plugin | Addons for Elementor |
Version | 7.1.1 |
Comparing to | |
See all releases |
Code changes from version 7.1 to 7.1.1
- addons-for-elementor.php +2 -2
- includes/theme-builder/documents/livemesh-grid.php +10 -5
- includes/theme-builder/documents/livemesh-item.php +10 -6
- plugin.php +2 -2
- readme.txt +5 -2
addons-for-elementor.php
CHANGED
@@ -8,7 +8,7 @@
|
|
8 |
* Author URI: https://livemeshelementor.com
|
9 |
* License: GPL3
|
10 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
11 |
-
* Version: 7.1
|
12 |
* Text Domain: livemesh-el-addons
|
13 |
* Domain Path: languages
|
14 |
* Elementor tested up to: 3.5.0
|
@@ -37,7 +37,7 @@ if ( !defined( 'ABSPATH' ) ) {
|
|
37 |
|
38 |
if ( !function_exists( 'lae_fs' ) ) {
|
39 |
// Plugin version
|
40 |
-
define( 'LAE_VERSION', '7.1' );
|
41 |
// Plugin Root File
|
42 |
define( 'LAE_PLUGIN_FILE', __FILE__ );
|
43 |
// Plugin Folder Path
|
8 |
* Author URI: https://livemeshelementor.com
|
9 |
* License: GPL3
|
10 |
* License URI: https://www.gnu.org/licenses/gpl-3.0.txt
|
11 |
+
* Version: 7.1.1
|
12 |
* Text Domain: livemesh-el-addons
|
13 |
* Domain Path: languages
|
14 |
* Elementor tested up to: 3.5.0
|
37 |
|
38 |
if ( !function_exists( 'lae_fs' ) ) {
|
39 |
// Plugin version
|
40 |
+
define( 'LAE_VERSION', '7.1.1' );
|
41 |
// Plugin Root File
|
42 |
define( 'LAE_PLUGIN_FILE', __FILE__ );
|
43 |
// Plugin Folder Path
|
includes/theme-builder/documents/livemesh-grid.php
CHANGED
@@ -10,12 +10,21 @@ if (!defined('ABSPATH')) {
|
|
10 |
|
11 |
class Livemesh_Grid extends Theme_Section_Document {
|
12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
public static function get_properties() {
|
14 |
|
15 |
$properties = parent::get_properties();
|
16 |
|
17 |
$properties['condition_type'] = '';
|
18 |
-
$properties['location'] = '
|
|
|
19 |
$properties['support_kit'] = true;
|
20 |
$properties['support_site_editor'] = true;
|
21 |
|
@@ -34,10 +43,6 @@ class Livemesh_Grid extends Theme_Section_Document {
|
|
34 |
return 'eicon-archive';
|
35 |
}
|
36 |
|
37 |
-
public function get_name() {
|
38 |
-
return 'livemesh_grid';
|
39 |
-
}
|
40 |
-
|
41 |
public static function get_title() {
|
42 |
|
43 |
return __('Livemesh Grid', 'livemesh-el-addons');
|
10 |
|
11 |
class Livemesh_Grid extends Theme_Section_Document {
|
12 |
|
13 |
+
public function get_name() {
|
14 |
+
return 'livemesh_grid';
|
15 |
+
}
|
16 |
+
|
17 |
+
public static function get_type() {
|
18 |
+
return 'livemesh_grid';
|
19 |
+
}
|
20 |
+
|
21 |
public static function get_properties() {
|
22 |
|
23 |
$properties = parent::get_properties();
|
24 |
|
25 |
$properties['condition_type'] = '';
|
26 |
+
$properties['location'] = 'single';
|
27 |
+
//$properties['location'] = 'livemesh_grid'; /* Lead to new theme builder not listing our items */
|
28 |
$properties['support_kit'] = true;
|
29 |
$properties['support_site_editor'] = true;
|
30 |
|
43 |
return 'eicon-archive';
|
44 |
}
|
45 |
|
|
|
|
|
|
|
|
|
46 |
public static function get_title() {
|
47 |
|
48 |
return __('Livemesh Grid', 'livemesh-el-addons');
|
includes/theme-builder/documents/livemesh-item.php
CHANGED
@@ -11,23 +11,27 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
11 |
// Define Loop as a template item
|
12 |
class Livemesh_Item extends Single {
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
public static function get_properties() {
|
15 |
|
16 |
$properties = parent::get_properties();
|
17 |
|
18 |
$properties['condition_type'] = 'singular';
|
19 |
-
|
20 |
-
|
21 |
$properties['support_kit'] = true;
|
22 |
$properties['support_site_editor'] = true;
|
23 |
|
24 |
return $properties;
|
25 |
}
|
26 |
|
27 |
-
public function get_name() {
|
28 |
-
return 'livemesh_item';
|
29 |
-
}
|
30 |
-
|
31 |
protected static function get_site_editor_thumbnail_url() {
|
32 |
return LAE_PLUGIN_URL . 'assets/images/livemesh-item.svg';
|
33 |
}
|
11 |
// Define Loop as a template item
|
12 |
class Livemesh_Item extends Single {
|
13 |
|
14 |
+
public function get_name() {
|
15 |
+
return 'livemesh_item';
|
16 |
+
}
|
17 |
+
|
18 |
+
public static function get_type() {
|
19 |
+
return 'livemesh_item';
|
20 |
+
}
|
21 |
+
|
22 |
public static function get_properties() {
|
23 |
|
24 |
$properties = parent::get_properties();
|
25 |
|
26 |
$properties['condition_type'] = 'singular';
|
27 |
+
$properties['location'] = 'single';
|
28 |
+
//$properties['location'] = 'livemesh_item'; /* Lead to new theme builder not listing our items */
|
29 |
$properties['support_kit'] = true;
|
30 |
$properties['support_site_editor'] = true;
|
31 |
|
32 |
return $properties;
|
33 |
}
|
34 |
|
|
|
|
|
|
|
|
|
35 |
protected static function get_site_editor_thumbnail_url() {
|
36 |
return LAE_PLUGIN_URL . 'assets/images/livemesh-item.svg';
|
37 |
}
|
plugin.php
CHANGED
@@ -45,7 +45,7 @@ if ( !class_exists( 'Livemesh_Elementor_Addons' ) ) {
|
|
45 |
public function __clone()
|
46 |
{
|
47 |
// Cloning instances of the class is forbidden
|
48 |
-
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-el-addons' ), '7.1' );
|
49 |
}
|
50 |
|
51 |
/**
|
@@ -55,7 +55,7 @@ if ( !class_exists( 'Livemesh_Elementor_Addons' ) ) {
|
|
55 |
public function __wakeup()
|
56 |
{
|
57 |
// Unserializing instances of the class is forbidden
|
58 |
-
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-el-addons' ), '7.1' );
|
59 |
}
|
60 |
|
61 |
private function setup_debug_constants()
|
45 |
public function __clone()
|
46 |
{
|
47 |
// Cloning instances of the class is forbidden
|
48 |
+
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-el-addons' ), '7.1.1' );
|
49 |
}
|
50 |
|
51 |
/**
|
55 |
public function __wakeup()
|
56 |
{
|
57 |
// Unserializing instances of the class is forbidden
|
58 |
+
_doing_it_wrong( __FUNCTION__, __( 'Cheatin’ huh?', 'livemesh-el-addons' ), '7.1.1' );
|
59 |
}
|
60 |
|
61 |
private function setup_debug_constants()
|
readme.txt
CHANGED
@@ -7,7 +7,7 @@ Tags: elementor, elementor addons, elementor extensions, elementor widgets, page
|
|
7 |
Requires at least: 5.0
|
8 |
Tested up to: 5.8
|
9 |
Requires PHP: 5.6
|
10 |
-
Stable Tag: 7.1
|
11 |
License: GPLv3
|
12 |
License URI: https://opensource.org/licenses/GPL-3.0
|
13 |
|
@@ -259,8 +259,11 @@ Email us at support[at]livemeshthemes.com and we will be happy to assist you.
|
|
259 |
|
260 |
|
261 |
|
|
|
|
|
|
|
262 |
= 7.1 =
|
263 |
-
* Fixed - Duplicate CSS entries in the minified CSS files due to a dev build configuration
|
264 |
|
265 |
= 7.01 =
|
266 |
* Fixed - Testimonials Slider not working
|
7 |
Requires at least: 5.0
|
8 |
Tested up to: 5.8
|
9 |
Requires PHP: 5.6
|
10 |
+
Stable Tag: 7.1.1
|
11 |
License: GPLv3
|
12 |
License URI: https://opensource.org/licenses/GPL-3.0
|
13 |
|
259 |
|
260 |
|
261 |
|
262 |
+
= 7.1.1 =
|
263 |
+
* Fixed - Livemesh Item and Livemesh Grid instances not being listed in the theme builder
|
264 |
+
|
265 |
= 7.1 =
|
266 |
+
* Fixed - Duplicate CSS entries in the minified CSS files due to a dev build configuration issue.
|
267 |
|
268 |
= 7.01 =
|
269 |
* Fixed - Testimonials Slider not working
|