Premium Addons for Elementor - Version 3.8.5

Version Description

  • Fixed: Uncaught ArgumentCountError: Too few arguments to function PremiumAddons\Widgets\Premium_Blog::get_post_thumbnail() in Premium Blog widget
Download this release

Release Info

Developer leap13
Plugin Icon 128x128 Premium Addons for Elementor
Version 3.8.5
Comparing to
See all releases

Code changes from version 3.8.4 to 3.8.5

admin/includes/dep/admin-helper.php CHANGED
@@ -8,7 +8,7 @@ if ( ! defined( 'ABSPATH' ) ) exit;
8
 
9
  class Admin_Helper {
10
 
11
- private $page_slug = 'premium-addons';
12
 
13
  private static $instance = null;
14
 
8
 
9
  class Admin_Helper {
10
 
11
+ protected $page_slug = 'premium-addons';
12
 
13
  private static $instance = null;
14
 
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.4
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.4');
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.3');
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.5
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.5');
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.4');
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.4
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.4 =
179
 
180
  - Tweak: Added new skin `Classic` in 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.5
9
  License: GPL v3.0
10
  License URI: https://opensource.org/licenses/GPL-3.0
11
 
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
181
+
182
  = 3.8.4 =
183
 
184
  - Tweak: Added new skin `Classic` in Blog widget.
widgets/premium-blog.php CHANGED
@@ -1795,7 +1795,7 @@ class Premium_Blog extends Widget_Base {
1795
  <div <?php echo $this->get_render_attribute_string( $wrap_key ); ?>>
1796
  <div class="premium-blog-thumb-effect-wrapper">
1797
  <div class="premium-blog-thumbnail-container <?php echo 'premium-blog-' . $image_effect . '-effect';?>">
1798
- <?php $this->get_post_thumbnail(); ?>
1799
  </div>
1800
  <?php if( 'classic' !== $skin ): ?>
1801
  <div class="premium-blog-effect-container <?php echo 'premium-blog-'. $post_effect . '-effect'; ?>">
1795
  <div <?php echo $this->get_render_attribute_string( $wrap_key ); ?>>
1796
  <div class="premium-blog-thumb-effect-wrapper">
1797
  <div class="premium-blog-thumbnail-container <?php echo 'premium-blog-' . $image_effect . '-effect';?>">
1798
+ <?php $this->get_post_thumbnail( $target ); ?>
1799
  </div>
1800
  <?php if( 'classic' !== $skin ): ?>
1801
  <div class="premium-blog-effect-container <?php echo 'premium-blog-'. $post_effect . '-effect'; ?>">