Version Description
- Fixed: Horizontal line appears on image hover in Premium Blog widget.
Download this release
Release Info
Developer | leap13 |
Plugin | Premium Addons for Elementor |
Version | 3.8.6 |
Comparing to | |
See all releases |
Code changes from version 3.8.5 to 3.8.6
admin/includes/dep/admin-helper.php
CHANGED
@@ -7,8 +7,8 @@ use PremiumAddons\Helper_Functions;
|
|
7 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
8 |
|
9 |
class Admin_Helper {
|
10 |
-
|
11 |
-
|
12 |
|
13 |
private static $instance = null;
|
14 |
|
7 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
8 |
|
9 |
class Admin_Helper {
|
10 |
+
|
11 |
+
protected $page_slug = 'premium-addons';
|
12 |
|
13 |
private static $instance = null;
|
14 |
|
assets/frontend/css/premium-addons.css
CHANGED
@@ -1603,7 +1603,7 @@
|
|
1603 |
height: 1px;
|
1604 |
width: 100%;
|
1605 |
}
|
1606 |
-
.premium-blog-thumbnail-container:before {
|
1607 |
width: 1px;
|
1608 |
height: 100%;
|
1609 |
}
|
@@ -1759,7 +1759,9 @@
|
|
1759 |
.premium-blog-post-container:not(.premium-blog-skin-classic) .premium-blog-content-wrapper {
|
1760 |
margin: 0px 10px 20px;
|
1761 |
clear: both;
|
1762 |
-
|
|
|
|
|
1763 |
}
|
1764 |
.premium-blog-skin-classic .premium-blog-thumbnail-overlay {
|
1765 |
position: absolute;
|
1603 |
height: 1px;
|
1604 |
width: 100%;
|
1605 |
}
|
1606 |
+
.premium-blog-post-container:not(.premium-blog-skin-classic) .premium-blog-thumbnail-container:before {
|
1607 |
width: 1px;
|
1608 |
height: 100%;
|
1609 |
}
|
1759 |
.premium-blog-post-container:not(.premium-blog-skin-classic) .premium-blog-content-wrapper {
|
1760 |
margin: 0px 10px 20px;
|
1761 |
clear: both;
|
1762 |
+
}
|
1763 |
+
.premium-blog-post-container .premium-blog-content-wrapper {
|
1764 |
+
padding: 30px;
|
1765 |
}
|
1766 |
.premium-blog-skin-classic .premium-blog-thumbnail-overlay {
|
1767 |
position: absolute;
|
premium-addons-for-elementor.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Premium Addons for Elementor
|
4 |
Description: Premium Addons Plugin Includes 22+ premium widgets for Elementor Page Builder.
|
5 |
Plugin URI: https://premiumaddons.com
|
6 |
-
Version: 3.8.
|
7 |
Author: Leap13
|
8 |
Author URI: https://leap13.com/
|
9 |
Text Domain: premium-addons-for-elementor
|
@@ -14,12 +14,12 @@ License: GNU General Public License v3.0
|
|
14 |
if ( ! defined('ABSPATH') ) exit; // No access of directly access
|
15 |
|
16 |
// Define Constants
|
17 |
-
define('PREMIUM_ADDONS_VERSION', '3.8.
|
18 |
define('PREMIUM_ADDONS_URL', plugins_url('/', __FILE__));
|
19 |
define('PREMIUM_ADDONS_PATH', plugin_dir_path(__FILE__));
|
20 |
define('PREMIUM_ADDONS_FILE', __FILE__);
|
21 |
define('PREMIUM_ADDONS_BASENAME', plugin_basename( PREMIUM_ADDONS_FILE ) );
|
22 |
-
define('PREMIUM_ADDONS_STABLE_VERSION', '3.8.
|
23 |
|
24 |
if( ! class_exists('Premium_Addons_Elementor') ) {
|
25 |
|
3 |
Plugin Name: Premium Addons for Elementor
|
4 |
Description: Premium Addons Plugin Includes 22+ premium widgets for Elementor Page Builder.
|
5 |
Plugin URI: https://premiumaddons.com
|
6 |
+
Version: 3.8.6
|
7 |
Author: Leap13
|
8 |
Author URI: https://leap13.com/
|
9 |
Text Domain: premium-addons-for-elementor
|
14 |
if ( ! defined('ABSPATH') ) exit; // No access of directly access
|
15 |
|
16 |
// Define Constants
|
17 |
+
define('PREMIUM_ADDONS_VERSION', '3.8.6');
|
18 |
define('PREMIUM_ADDONS_URL', plugins_url('/', __FILE__));
|
19 |
define('PREMIUM_ADDONS_PATH', plugin_dir_path(__FILE__));
|
20 |
define('PREMIUM_ADDONS_FILE', __FILE__);
|
21 |
define('PREMIUM_ADDONS_BASENAME', plugin_basename( PREMIUM_ADDONS_FILE ) );
|
22 |
+
define('PREMIUM_ADDONS_STABLE_VERSION', '3.8.5');
|
23 |
|
24 |
if( ! class_exists('Premium_Addons_Elementor') ) {
|
25 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate Link: https://premiumaddons.com/?utm_source=wp-repo&utm_medium=link&utm_c
|
|
5 |
Requires at Least: 4.5
|
6 |
Tested Up To: 5.2.4
|
7 |
Requires PHP: 5.4
|
8 |
-
Stable Tag: 3.8.
|
9 |
License: GPL v3.0
|
10 |
License URI: https://opensource.org/licenses/GPL-3.0
|
11 |
|
@@ -175,6 +175,10 @@ Premium Addons for Elementor is 100% Ads Free, Ads can only be detected from You
|
|
175 |
|
176 |
== Changelog ==
|
177 |
|
|
|
|
|
|
|
|
|
178 |
= 3.8.5 =
|
179 |
|
180 |
- Fixed: `Uncaught ArgumentCountError: Too few arguments to function PremiumAddons\Widgets\Premium_Blog::get_post_thumbnail()` in Premium Blog widget
|
5 |
Requires at Least: 4.5
|
6 |
Tested Up To: 5.2.4
|
7 |
Requires PHP: 5.4
|
8 |
+
Stable Tag: 3.8.6
|
9 |
License: GPL v3.0
|
10 |
License URI: https://opensource.org/licenses/GPL-3.0
|
11 |
|
175 |
|
176 |
== Changelog ==
|
177 |
|
178 |
+
= 3.8.6 =
|
179 |
+
|
180 |
+
- Fixed: Horizontal line appears on image hover in Premium Blog widget.
|
181 |
+
|
182 |
= 3.8.5 =
|
183 |
|
184 |
- Fixed: `Uncaught ArgumentCountError: Too few arguments to function PremiumAddons\Widgets\Premium_Blog::get_post_thumbnail()` in Premium Blog widget
|
widgets/premium-blog.php
CHANGED
@@ -419,6 +419,7 @@ class Premium_Blog extends Widget_Base {
|
|
419 |
[
|
420 |
'label' => __( 'Post Format Icon', 'premium-addons-for-elementor' ),
|
421 |
'type' => Controls_Manager::SWITCHER,
|
|
|
422 |
'default' => 'yes',
|
423 |
]
|
424 |
);
|
@@ -956,7 +957,7 @@ class Premium_Blog extends Widget_Base {
|
|
956 |
Group_Control_Typography::get_type(),
|
957 |
[
|
958 |
'name' => 'premium_blog_title_typo',
|
959 |
-
'selector' => '{{WRAPPER}} .premium-blog-entry-title',
|
960 |
]
|
961 |
);
|
962 |
|
419 |
[
|
420 |
'label' => __( 'Post Format Icon', 'premium-addons-for-elementor' ),
|
421 |
'type' => Controls_Manager::SWITCHER,
|
422 |
+
'description' => __( 'Please note that post format icon is hidden for 3 and 4 columns', 'premium-addons-for-elementor' ),
|
423 |
'default' => 'yes',
|
424 |
]
|
425 |
);
|
957 |
Group_Control_Typography::get_type(),
|
958 |
[
|
959 |
'name' => 'premium_blog_title_typo',
|
960 |
+
'selector' => '{{WRAPPER}} .premium-blog-entry-title a',
|
961 |
]
|
962 |
);
|
963 |
|