Version Description
- Fixing compatibility issues with ACF extended
Download this release
Release Info
Developer | dudaster |
Plugin | Elementor Custom Skin |
Version | 1.3.10 |
Comparing to | |
See all releases |
Code changes from version 1.3.9 to 1.3.10
- ele-custom-skin.php +2 -2
- readme.txt +4 -1
- skins/skin-custom.php +1 -1
ele-custom-skin.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Plugin Name: Ele Custom Skin
|
4 |
-
* Version: 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
|
@@ -18,7 +18,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
18 |
define( 'ELECS_DIR', plugin_dir_path( __FILE__ ));
|
19 |
define( 'ELECS_NAME', plugin_basename( __FILE__ ));
|
20 |
define( 'ELECS_URL', plugin_dir_url( __FILE__ ));
|
21 |
-
define ('ELECS_VER','1.3.
|
22 |
|
23 |
include_once ELECS_DIR.'includes/ecs-notices.php';
|
24 |
include_once ELECS_DIR.'includes/ecs-dependencies.php';
|
1 |
<?php
|
2 |
/*
|
3 |
* Plugin Name: Ele Custom Skin
|
4 |
+
* Version: 1.3.10
|
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
|
18 |
define( 'ELECS_DIR', plugin_dir_path( __FILE__ ));
|
19 |
define( 'ELECS_NAME', plugin_basename( __FILE__ ));
|
20 |
define( 'ELECS_URL', plugin_dir_url( __FILE__ ));
|
21 |
+
define ('ELECS_VER','1.3.10');
|
22 |
|
23 |
include_once ELECS_DIR.'includes/ecs-notices.php';
|
24 |
include_once ELECS_DIR.'includes/ecs-dependencies.php';
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: page-builder, elementor, loop, archive list, post widget, skin, custom, po
|
|
4 |
Donate link: https://www.paypal.me/dudaster
|
5 |
Requires at least: 5.0
|
6 |
Tested up to: 5.3.1
|
7 |
-
Stable tag: 1.3.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -59,6 +59,9 @@ Add to your template a Post or Post Archive widget and from Skins select Custom
|
|
59 |
|
60 |
== Changelog ==
|
61 |
|
|
|
|
|
|
|
62 |
= 1.3.9 =
|
63 |
* Solved compatibility issues with Elementor 2.8
|
64 |
* Fixing issue with Title Widget not showing.
|
4 |
Donate link: https://www.paypal.me/dudaster
|
5 |
Requires at least: 5.0
|
6 |
Tested up to: 5.3.1
|
7 |
+
Stable tag: 1.3.10
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
59 |
|
60 |
== Changelog ==
|
61 |
|
62 |
+
= 1.3.10 =
|
63 |
+
* Fixing compatibility issues with ACF extended
|
64 |
+
|
65 |
= 1.3.9 =
|
66 |
* Solved compatibility issues with Elementor 2.8
|
67 |
* Fixing issue with Title Widget not showing.
|
skins/skin-custom.php
CHANGED
@@ -137,7 +137,7 @@ class Skin_Posts_ECS extends Skin_Base {
|
|
137 |
global $ecs_render_loop, $wp_query,$ecs_index;
|
138 |
$ecs_index++;
|
139 |
$old_query=$wp_query;
|
140 |
-
$new_query=new \WP_Query( array( 'p' => get_the_ID() ) );
|
141 |
$wp_query = $new_query;
|
142 |
$settings = $this->parent->get_settings();
|
143 |
$this->pid=get_the_ID();//set the current id in private var usefull to passid
|
137 |
global $ecs_render_loop, $wp_query,$ecs_index;
|
138 |
$ecs_index++;
|
139 |
$old_query=$wp_query;
|
140 |
+
$new_query=new \WP_Query( array( 'p' => get_the_ID(), 'post_type' => get_post_type() ) );
|
141 |
$wp_query = $new_query;
|
142 |
$settings = $this->parent->get_settings();
|
143 |
$this->pid=get_the_ID();//set the current id in private var usefull to passid
|