Version Description
- Fixed issue with Ajax call from third party plugins like Smart Filter.
Download this release
Release Info
Developer | dudaster |
Plugin | Elementor Custom Skin |
Version | 2.2.1 |
Comparing to | |
See all releases |
Code changes from version 2.2.0 to 2.2.1
- 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: 2.2.
|
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','2.2.
|
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: 2.2.1
|
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','2.2.1');
|
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.4.2
|
7 |
-
Stable tag: 2.2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -70,6 +70,9 @@ Add to your template a Post or Post Archive widget and from Skins select Custom
|
|
70 |
|
71 |
== Changelog ==
|
72 |
|
|
|
|
|
|
|
73 |
= 2.2.0 =
|
74 |
* NEW!!! Ajax pagination. Now you can go to Pagination Section in Posts / Archive Posts Widgets and select "Load more" pagination.
|
75 |
* Solved issue with multiple Custom Grid in one page.
|
4 |
Donate link: https://www.paypal.me/dudaster
|
5 |
Requires at least: 5.0
|
6 |
Tested up to: 5.4.2
|
7 |
+
Stable tag: 2.2.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
70 |
|
71 |
== Changelog ==
|
72 |
|
73 |
+
= 2.2.1 =
|
74 |
+
* Fixed issue with Ajax call from third party plugins like Smart Filter.
|
75 |
+
|
76 |
= 2.2.0 =
|
77 |
* NEW!!! Ajax pagination. Now you can go to Pagination Section in Posts / Archive Posts Widgets and select "Load more" pagination.
|
78 |
* Solved issue with multiple Custom Grid in one page.
|
skins/skin-custom.php
CHANGED
@@ -347,7 +347,7 @@ class Skin_Posts_ECS extends Skin_Base {
|
|
347 |
'load_method' => $settings['pagination_type'],//or infinitescroll for pro
|
348 |
'widget_id' => $this->parent->get_id(),
|
349 |
'post_id' => get_the_id(),
|
350 |
-
'theme_id' => $theme_document->get_main_id(),
|
351 |
|
352 |
];
|
353 |
|
347 |
'load_method' => $settings['pagination_type'],//or infinitescroll for pro
|
348 |
'widget_id' => $this->parent->get_id(),
|
349 |
'post_id' => get_the_id(),
|
350 |
+
'theme_id' => is_null($theme_document) ? '' : $theme_document->get_main_id(),
|
351 |
|
352 |
];
|
353 |
|