Premium Addons for Elementor - Version 3.0.3

Version Description

  • Tweak: Added CSS Filters option for image in Banner and Image Separator widgets.
Download this release

Release Info

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

Code changes from version 3.0.2 to 3.0.3

admin/settings/version-control.php CHANGED
@@ -79,7 +79,7 @@ class PA_Version_Control {
79
  <tr class="pa-roll-row">
80
  <th>Rollback Version</th>
81
  <td>
82
- <div><?php echo sprintf( '<a target="_blank" href="%s" class="button pa-btn pa-rollback-button elementor-button-spinner">Reinstall Version 3.0.1</a>', wp_nonce_url( admin_url( 'admin-post.php?action=premium_addons_rollback' ), 'premium_addons_rollback' ) ); ?> </div>
83
  <p class="pa-roll-desc"><span>Warning: Please backup your database before making the rollback.</span></p>
84
  </td>
85
  </tr>
79
  <tr class="pa-roll-row">
80
  <th>Rollback Version</th>
81
  <td>
82
+ <div><?php echo sprintf( '<a target="_blank" href="%s" class="button pa-btn pa-rollback-button elementor-button-spinner">Reinstall Version 3.0.2</a>', wp_nonce_url( admin_url( 'admin-post.php?action=premium_addons_rollback' ), 'premium_addons_rollback' ) ); ?> </div>
83
  <p class="pa-roll-desc"><span>Warning: Please backup your database before making the rollback.</span></p>
84
  </td>
85
  </tr>
premium-addons-for-elementor.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Premium Addons for Elementor
4
  Description: Premium Addons Plugin Includes 21+ premium widgets for Elementor Page Builder.
5
  Plugin URI: https://premiumaddons.com
6
- Version: 3.0.2
7
  Author: Leap13
8
  Author URI: http://leap13.com/
9
  Text Domain: premium-addons-for-elementor
@@ -22,12 +22,12 @@ if (! function_exists('add_action')) {
22
  if ( ! defined('ABSPATH') ) exit; // No access of directly access
23
 
24
  // Define Constants
25
- define('PREMIUM_ADDONS_VERSION', '3.0.2');
26
  define('PREMIUM_ADDONS_URL', plugins_url('/', __FILE__));
27
  define('PREMIUM_ADDONS_PATH', plugin_dir_path(__FILE__));
28
  define('PREMIUM_ADDONS_FILE', __FILE__);
29
  define('PREMIUM_ADDONS_BASENAME', plugin_basename(__FILE__));
30
- define('PREMIUM_ADDONS_STABLE_VERSION', '3.0.1');
31
 
32
  if( ! class_exists('Premium_Addons_Elementor') ) {
33
  /*
3
  Plugin Name: Premium Addons for Elementor
4
  Description: Premium Addons Plugin Includes 21+ premium widgets for Elementor Page Builder.
5
  Plugin URI: https://premiumaddons.com
6
+ Version: 3.0.3
7
  Author: Leap13
8
  Author URI: http://leap13.com/
9
  Text Domain: premium-addons-for-elementor
22
  if ( ! defined('ABSPATH') ) exit; // No access of directly access
23
 
24
  // Define Constants
25
+ define('PREMIUM_ADDONS_VERSION', '3.0.3');
26
  define('PREMIUM_ADDONS_URL', plugins_url('/', __FILE__));
27
  define('PREMIUM_ADDONS_PATH', plugin_dir_path(__FILE__));
28
  define('PREMIUM_ADDONS_FILE', __FILE__);
29
  define('PREMIUM_ADDONS_BASENAME', plugin_basename(__FILE__));
30
+ define('PREMIUM_ADDONS_STABLE_VERSION', '3.0.2');
31
 
32
  if( ! class_exists('Premium_Addons_Elementor') ) {
33
  /*
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: http://premiumaddons.com
5
  Requires at least: 4.5
6
  Tested up to: 5.0.3
7
  Requires PHP: 5.4
8
- Stable tag: 3.0.2
9
  License: GPL v3.0
10
  License URI: https://opensource.org/licenses/GPL-3.0
11
 
@@ -137,6 +137,10 @@ Premium Addons for Elementor is 100% Ads Free, Ads can only be detected from You
137
 
138
  == Changelog ==
139
 
 
 
 
 
140
  = 3.0.2 =
141
 
142
  - Fixed: `Full Section Scroll` option in Premium Vertical Scroll widget.
5
  Requires at least: 4.5
6
  Tested up to: 5.0.3
7
  Requires PHP: 5.4
8
+ Stable tag: 3.0.3
9
  License: GPL v3.0
10
  License URI: https://opensource.org/licenses/GPL-3.0
11
 
137
 
138
  == Changelog ==
139
 
140
+ = 3.0.3 =
141
+
142
+ - Tweak: Added `CSS Filters` option for image in Banner and Image Separator widgets.
143
+
144
  = 3.0.2 =
145
 
146
  - Fixed: `Full Section Scroll` option in Premium Vertical Scroll widget.
widgets/premium-banner.php CHANGED
@@ -478,6 +478,14 @@ class Premium_Banner extends Widget_Base {
478
  ]
479
  ]
480
  );
 
 
 
 
 
 
 
 
481
 
482
  $this->add_group_control(
483
  Group_Control_Border::get_type(),
478
  ]
479
  ]
480
  );
481
+
482
+ $this->add_group_control(
483
+ Group_Control_Css_Filter::get_type(),
484
+ [
485
+ 'name' => 'css_filters',
486
+ 'selector' => '{{WRAPPER}} .premium_addons-banner-ib',
487
+ ]
488
+ );
489
 
490
  $this->add_group_control(
491
  Group_Control_Border::get_type(),
widgets/premium-fancytext.php CHANGED
@@ -150,7 +150,6 @@ class Premium_Fancytext extends Widget_Base {
150
  'condition' => [
151
  'premium_fancy_text_effect' => 'typing',
152
  ],
153
- 'label_block' => true,
154
  ]
155
  );
156
 
@@ -164,7 +163,6 @@ class Premium_Fancytext extends Widget_Base {
164
  'condition' => [
165
  'premium_fancy_text_effect' => 'typing',
166
  ],
167
- 'label_block' => true,
168
  ]
169
  );
170
 
@@ -178,7 +176,6 @@ class Premium_Fancytext extends Widget_Base {
178
  'condition' => [
179
  'premium_fancy_text_effect' => 'typing',
180
  ],
181
- 'label_block' => true,
182
  ]
183
  );
184
 
@@ -192,7 +189,6 @@ class Premium_Fancytext extends Widget_Base {
192
  'condition' => [
193
  'premium_fancy_text_effect' => 'typing',
194
  ],
195
- 'label_block' => true,
196
  ]
197
  );
198
 
@@ -244,7 +240,6 @@ class Premium_Fancytext extends Widget_Base {
244
  'condition' => [
245
  'premium_fancy_text_effect' => 'slide',
246
  ],
247
- 'label_block' => true,
248
  ]
249
  );
250
 
@@ -258,7 +253,6 @@ class Premium_Fancytext extends Widget_Base {
258
  'condition' => [
259
  'premium_fancy_text_effect' => 'slide',
260
  ],
261
- 'label_block' => true,
262
  ]
263
  );
264
 
@@ -272,7 +266,6 @@ class Premium_Fancytext extends Widget_Base {
272
  'condition' => [
273
  'premium_fancy_text_effect' => 'slide',
274
  ],
275
- 'label_block' => true,
276
  ]
277
  );
278
 
150
  'condition' => [
151
  'premium_fancy_text_effect' => 'typing',
152
  ],
 
153
  ]
154
  );
155
 
163
  'condition' => [
164
  'premium_fancy_text_effect' => 'typing',
165
  ],
 
166
  ]
167
  );
168
 
176
  'condition' => [
177
  'premium_fancy_text_effect' => 'typing',
178
  ],
 
179
  ]
180
  );
181
 
189
  'condition' => [
190
  'premium_fancy_text_effect' => 'typing',
191
  ],
 
192
  ]
193
  );
194
 
240
  'condition' => [
241
  'premium_fancy_text_effect' => 'slide',
242
  ],
 
243
  ]
244
  );
245
 
253
  'condition' => [
254
  'premium_fancy_text_effect' => 'slide',
255
  ],
 
256
  ]
257
  );
258
 
266
  'condition' => [
267
  'premium_fancy_text_effect' => 'slide',
268
  ],
 
269
  ]
270
  );
271
 
widgets/premium-image-separator.php CHANGED
@@ -201,6 +201,25 @@ class Premium_Image_Separator extends Widget_Base {
201
 
202
  /*End Price Settings Section*/
203
  $this->end_controls_section();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
204
 
205
  }
206
 
201
 
202
  /*End Price Settings Section*/
203
  $this->end_controls_section();
204
+
205
+ /*Start Style Section*/
206
+ $this->start_controls_section('premium_image_separator_style',
207
+ [
208
+ 'label' => __('Fancy Text', 'premium-addons-for-elementor'),
209
+ 'tab' => Controls_Manager::TAB_STYLE,
210
+ ]
211
+ );
212
+
213
+ $this->add_group_control(
214
+ Group_Control_Css_Filter::get_type(),
215
+ [
216
+ 'name' => 'css_filters',
217
+ 'selector' => '{{WRAPPER}} .premium-image-separator-container img',
218
+ ]
219
+ );
220
+
221
+ /*End Style Section*/
222
+ $this->end_controls_section();
223
 
224
  }
225