Version Description
- Fixed issue with Archive Posts
Download this release
Release Info
Developer | dudaster |
Plugin | Elementor Custom Skin |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0.0 to 1.0.1
- ele-custom-skin.php +1 -1
- readme.txt +5 -3
- skins/skin-custom.php +3 -3
ele-custom-skin.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Plugin Name: Ele Custom Skin
|
4 |
-
* Version: 1.0.
|
5 |
* Description: Elementor Custom Skin for Posts and Posts Archive. You can create a skin as you want.
|
6 |
* Plugin URI: https://www.eletemplator.com
|
7 |
* Author: Liviu Duda
|
1 |
<?php
|
2 |
/*
|
3 |
* Plugin Name: Ele Custom Skin
|
4 |
+
* Version: 1.0.1
|
5 |
* Description: Elementor Custom Skin for Posts and Posts Archive. You can create a skin as you want.
|
6 |
* Plugin URI: https://www.eletemplator.com
|
7 |
* Author: Liviu Duda
|
readme.txt
CHANGED
@@ -3,11 +3,11 @@ Contributors: dudaster
|
|
3 |
Tags: page-builder, elementor
|
4 |
Requires at least: 4.6
|
5 |
Tested up to: 4.9.1
|
6 |
-
Stable tag:
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
10 |
-
|
11 |
|
12 |
== Description ==
|
13 |
|
@@ -42,6 +42,8 @@ Add to your template a Post or Post Archive widget and from Skins select Custom
|
|
42 |
|
43 |
== Changelog ==
|
44 |
|
|
|
|
|
45 |
|
46 |
-
= 1.0 =
|
47 |
* Initial Launch with Loop Elementor My Templates Type
|
3 |
Tags: page-builder, elementor
|
4 |
Requires at least: 4.6
|
5 |
Tested up to: 4.9.1
|
6 |
+
Stable tag: 1.0.1
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
10 |
+
Create new skins for Elementor PRO 2.x page builder. Design your own skins for Post and Post Archive Widgets using Elementor Loop Templates.
|
11 |
|
12 |
== Description ==
|
13 |
|
42 |
|
43 |
== Changelog ==
|
44 |
|
45 |
+
= 1.0.1 =
|
46 |
+
* Fixed issue with Archive Posts
|
47 |
|
48 |
+
= 1.0.0 =
|
49 |
* Initial Launch with Loop Elementor My Templates Type
|
skins/skin-custom.php
CHANGED
@@ -28,8 +28,8 @@ class Skin_Custom extends Skin_Base {
|
|
28 |
}
|
29 |
|
30 |
protected function _register_controls_actions() {
|
31 |
-
add_action( 'elementor/element/posts
|
32 |
-
add_action( 'elementor/element/posts
|
33 |
|
34 |
add_action( 'elementor/element/posts/section_layout/before_section_end', [ $this, 'register_controls' ] );
|
35 |
add_action( 'elementor/element/posts/section_query/after_section_end', [ $this, 'register_style_sections' ] );
|
@@ -151,7 +151,7 @@ class Skin_Custom extends Skin_Base {
|
|
151 |
}
|
152 |
|
153 |
// Add a custom skin for the POST Archive widget
|
154 |
-
add_action( 'elementor/widget/posts
|
155 |
$widget->add_skin( new Skin_Custom( $widget ) );
|
156 |
} );
|
157 |
// Add a custom skin for the POSTS widget
|
28 |
}
|
29 |
|
30 |
protected function _register_controls_actions() {
|
31 |
+
add_action( 'elementor/element/archive-posts/section_layout/before_section_end', [ $this, 'register_controls' ] );
|
32 |
+
add_action( 'elementor/element/archive-posts/section_query/after_section_end', [ $this, 'register_style_sections' ] );
|
33 |
|
34 |
add_action( 'elementor/element/posts/section_layout/before_section_end', [ $this, 'register_controls' ] );
|
35 |
add_action( 'elementor/element/posts/section_query/after_section_end', [ $this, 'register_style_sections' ] );
|
151 |
}
|
152 |
|
153 |
// Add a custom skin for the POST Archive widget
|
154 |
+
add_action( 'elementor/widget/archive-posts/skins_init', function( $widget ) {
|
155 |
$widget->add_skin( new Skin_Custom( $widget ) );
|
156 |
} );
|
157 |
// Add a custom skin for the POSTS widget
|