Elementor Custom Skin - Version 3.1.4

Version Description

  • Fixed error with Custom Grid Loop Item Widget when added to the template.
  • Fixed issues with the new Theme Builder View
Download this release

Release Info

Developer dudaster
Plugin Icon 128x128 Elementor Custom Skin
Version 3.1.4
Comparing to
See all releases

Code changes from version 3.1.3 to 3.1.4

ele-custom-skin.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Plugin Name: Ele Custom Skin
4
- * Version: 3.1.3
5
  * Description: Elementor Custom Skin for Posts and Archive Posts. You can create a skin as you want.
6
  * Plugin URI: https://dudaster.com
7
  * Author: Dudaster.com
@@ -20,7 +20,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
20
  define( 'ELECS_DIR', plugin_dir_path( __FILE__ ));
21
  define( 'ELECS_NAME', plugin_basename( __FILE__ ));
22
  define( 'ELECS_URL', plugin_dir_url( __FILE__ ));
23
- define ('ELECS_VER','3.1.3');
24
 
25
  include_once ELECS_DIR.'includes/ecs-notices.php';
26
  include_once ELECS_DIR.'includes/ecs-dependencies.php';
1
  <?php
2
  /*
3
  * Plugin Name: Ele Custom Skin
4
+ * Version: 3.1.4
5
  * Description: Elementor Custom Skin for Posts and Archive Posts. You can create a skin as you want.
6
  * Plugin URI: https://dudaster.com
7
  * Author: Dudaster.com
20
  define( 'ELECS_DIR', plugin_dir_path( __FILE__ ));
21
  define( 'ELECS_NAME', plugin_basename( __FILE__ ));
22
  define( 'ELECS_URL', plugin_dir_url( __FILE__ ));
23
+ define ('ELECS_VER','3.1.4');
24
 
25
  include_once ELECS_DIR.'includes/ecs-notices.php';
26
  include_once ELECS_DIR.'includes/ecs-dependencies.php';
modules/loop-item/widgets/loop-item.php CHANGED
@@ -107,7 +107,7 @@ class Ele_Custom_Loop_Item_Widget extends \Elementor\Widget_Base {
107
  protected function render() {
108
 
109
  if ( $this->show_nice() ) {
110
- $this->_content_template();
111
  } else {
112
  echo "{{ecs-article}}";
113
  }
@@ -124,7 +124,7 @@ class Ele_Custom_Loop_Item_Widget extends \Elementor\Widget_Base {
124
  return $is_preview;
125
  }
126
 
127
- protected function _content_template() {
128
 
129
  ?>
130
  <div class="ecs-loop-preview">
107
  protected function render() {
108
 
109
  if ( $this->show_nice() ) {
110
+ $this->content_template();
111
  } else {
112
  echo "{{ecs-article}}";
113
  }
124
  return $is_preview;
125
  }
126
 
127
+ protected function content_template() {
128
 
129
  ?>
130
  <div class="ecs-loop-preview">
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: dudaster
3
  Tags: page-builder, elementor, loop, archive list, post widget, skin, custom, post grid
4
  Donate link: https://www.paypal.me/dudaster
5
  Requires at least: 5.0
6
- Tested up to: 5.8
7
- Stable tag: 3.1.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -64,9 +64,12 @@ Add to your template a Post or Post Archive widget and from Skins select Custom
64
 
65
  == Changelog ==
66
 
 
 
 
67
 
68
  = 3.1.3 =
69
- * Fixed issues with Elementor PRO 3.4.
70
 
71
  = 3.1.2 =
72
  * Fixed the url error message issues.
3
  Tags: page-builder, elementor, loop, archive list, post widget, skin, custom, post grid
4
  Donate link: https://www.paypal.me/dudaster
5
  Requires at least: 5.0
6
+ Tested up to: 5.8.2
7
+ Stable tag: 3.1.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
64
 
65
  == Changelog ==
66
 
67
+ = 3.1.4 =
68
+ * Fixed error with Custom Grid Loop Item Widget when added to the template.
69
+ * Fixed issues with the new Theme Builder View
70
 
71
  = 3.1.3 =
72
+ * Fixed CSS issue with Elementor PRO 3.4.
73
 
74
  = 3.1.2 =
75
  * Fixed the url error message issues.
theme-builder/documents/custom-grid.php CHANGED
@@ -12,7 +12,7 @@ class customGrid extends Theme_Section_Document {
12
  $properties = parent::get_properties();
13
 
14
  $properties['condition_type'] = 'custom_grid';
15
- $properties['location'] = 'custom_grid';
16
  $properties['support_kit'] = true;
17
  $properties['support_site_editor'] = true;
18
 
@@ -30,6 +30,10 @@ class customGrid extends Theme_Section_Document {
30
  public function get_name() {
31
  return 'custom_grid';
32
  }
 
 
 
 
33
 
34
  public static function get_title() {
35
  return __( 'Custom Grid', 'ele-custom-skin' );
12
  $properties = parent::get_properties();
13
 
14
  $properties['condition_type'] = 'custom_grid';
15
+ $properties['location'] = 'single';
16
  $properties['support_kit'] = true;
17
  $properties['support_site_editor'] = true;
18
 
30
  public function get_name() {
31
  return 'custom_grid';
32
  }
33
+
34
+ public static function get_type() {
35
+ return 'custom_grid';
36
+ }
37
 
38
  public static function get_title() {
39
  return __( 'Custom Grid', 'ele-custom-skin' );
theme-builder/documents/loop.php CHANGED
@@ -14,7 +14,7 @@ class Loop extends Single {
14
 
15
  $properties['condition_type'] = 'loop';
16
  //$properties['location'] = 'archive';
17
- $properties['location'] = 'loop';
18
  $properties['support_kit'] = true;
19
  $properties['support_site_editor'] = true;
20
  return $properties;
@@ -24,6 +24,10 @@ class Loop extends Single {
24
  return 'loop';
25
  }
26
 
 
 
 
 
27
  protected static function get_site_editor_thumbnail_url() {
28
  return ELECS_URL . 'assets/images/loop.svg';
29
  }
14
 
15
  $properties['condition_type'] = 'loop';
16
  //$properties['location'] = 'archive';
17
+ $properties['location'] = 'single';
18
  $properties['support_kit'] = true;
19
  $properties['support_site_editor'] = true;
20
  return $properties;
24
  return 'loop';
25
  }
26
 
27
+ public static function get_type() {
28
+ return 'loop';
29
+ }
30
+
31
  protected static function get_site_editor_thumbnail_url() {
32
  return ELECS_URL . 'assets/images/loop.svg';
33
  }