Elementor Addon Elements - Version 1.11.7

Version Description

  • Fixed : Modal Popup Label Corrected for Height Control
  • Fixed : Content Switcher Label CSS
Download this release

Release Info

Developer wpvibes
Plugin Icon 128x128 Elementor Addon Elements
Version 1.11.7
Comparing to
See all releases

Code changes from version 1.11.6 to 1.11.7

elementor-addon-elements.php CHANGED
@@ -5,10 +5,10 @@
5
  * Description: Elementor Addon Elements comes with 25+ widgets and extensions to extend the power of Elementor Page Builder.
6
  * Plugin URI: https://www.elementoraddons.com/elements-addon-elements/
7
  * Author: WPVibes
8
- * Version: 1.11.6
9
  * Author URI: https://wpvibes.com/
10
- * Elementor tested up to: 3.2.4
11
- * Elementor Pro tested up to: 3.3.0
12
  * Text Domain: wts-eae
13
  * @package WTS_EAE
14
  */
@@ -16,7 +16,7 @@ define( 'EAE_FILE', __FILE__ );
16
  define( 'EAE_URL', plugins_url( '/', __FILE__ ) );
17
  define( 'EAE_PATH', plugin_dir_path( __FILE__ ) );
18
  define( 'EAE_SCRIPT_SUFFIX', defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min' );
19
- define( 'EAE_VERSION', '1.11.6' );
20
 
21
 
22
  if ( ! function_exists( '_is_elementor_installed' ) ) {
5
  * Description: Elementor Addon Elements comes with 25+ widgets and extensions to extend the power of Elementor Page Builder.
6
  * Plugin URI: https://www.elementoraddons.com/elements-addon-elements/
7
  * Author: WPVibes
8
+ * Version: 1.11.7
9
  * Author URI: https://wpvibes.com/
10
+ * Elementor tested up to: 3.2.5
11
+ * Elementor Pro tested up to: 3.3.1
12
  * Text Domain: wts-eae
13
  * @package WTS_EAE
14
  */
16
  define( 'EAE_URL', plugins_url( '/', __FILE__ ) );
17
  define( 'EAE_PATH', plugin_dir_path( __FILE__ ) );
18
  define( 'EAE_SCRIPT_SUFFIX', defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min' );
19
+ define( 'EAE_VERSION', '1.11.7' );
20
 
21
 
22
  if ( ! function_exists( '_is_elementor_installed' ) ) {
inc/bootstrap.php CHANGED
@@ -306,22 +306,24 @@ class Plugin {
306
  return round( $datediff / 86400 );
307
  }
308
  public function eae_review() {
309
- if ( isset( $_GET['eae_nonce'] ) && ! wp_verify_nonce( $_GET['eae_nonce'], 'wp_rest' ) ) {
310
- die( 'Sorry, your nonce did not verify!' );
 
 
 
 
 
311
  }
312
-
313
  if ( isset( $_GET['remind_later'] ) ) {
314
  $this->eae_remind_later();
315
  } elseif ( isset( $_GET['review_done'] ) ) {
316
  $this->eae_review_done();
317
- } else {
318
- add_action( 'admin_notices', [ $this, 'eae_review_box' ] );
319
- }
320
  }
321
 
322
  public function eae_review_box( ) {
323
  ?>
324
- <div class="notice notice-success is-dismissible">
325
  <p><?php echo 'I hope you are enjoying using <b>Elementor Addon Elements</b>. Could you please do a BIG favor and give it a 5-star rating on WordPress.org ? <br/> Just to help us spread the word and boost our motivation. <br/><b>~ Anand Upadhyay</b>'; ?></p>
326
  <p>
327
  <?php
@@ -333,8 +335,9 @@ class Plugin {
333
  printf(
334
  '<a class="eae-notice-link" style="padding-right: 5px;" href="%1$s"><span class="dashicons dashicons-schedule" style="text-decoration : none; margin : 0px 3px;"></span>%2$s</a>',
335
  esc_url(
336
- add_query_arg( 'remind_later', 'later' ) .
337
- add_query_arg( 'eae_nonce', wp_create_nonce( 'wp_rest' ) )
 
338
  ),
339
  esc_html__( 'May Be Later', 'wts-eae' )
340
  );
@@ -342,11 +345,14 @@ class Plugin {
342
  printf(
343
  '<a class="eae-notice-link" style="padding-right: 5px;" href="%1$s"><span class="dashicons dashicons-smiley" style="text-decoration : none; margin : 0px 3px;"></span>%2$s</a>',
344
  esc_url(
345
- add_query_arg( 'review_done', 'done' ) .
346
- add_query_arg( 'eae_nonce', wp_create_nonce( 'wp_rest' ) )
347
  ),
348
  esc_html__( 'Already Done', 'wts-eae' )
349
  );
 
 
 
350
  ?>
351
  </p>
352
  </div>
@@ -366,17 +372,21 @@ class Plugin {
366
  }
367
 
368
  public function fv_download_box() {
369
- if ( isset( $_GET['eae_nonce'] ) && ! wp_verify_nonce( $_GET['eae_nonce'], 'wp_rest' ) ) {
370
- die( 'Sorry, your nonce did not verify!' );
 
371
  }
372
-
 
 
 
 
 
373
  if ( isset( $_GET['fv_download_later'] ) ) {
374
  $this->fv_download_later();
375
  } elseif ( isset( $_GET['fv_not_interested'] ) ) {
376
  $this->fv_not_interested();
377
- } else {
378
- $this->check_form_used();
379
- }
380
  }
381
  public function check_form_used() {
382
  if ( ! is_plugin_active( 'form-vibes/form-vibes.php' ) ) {
@@ -430,16 +440,21 @@ class Plugin {
430
  printf(
431
  '<a class="eae-notice-link" style="padding-right: 5px;" href="%1$s"><span class="dashicons dashicons-schedule" style="text-decoration : none; margin : 0px 3px;"></span>%2$s</a>',
432
  esc_url(
433
- add_query_arg( 'fv_download_later', 'later' ) .
434
- add_query_arg( 'eae_nonce', wp_create_nonce( 'wp_rest' ) )
 
435
  ),
436
  esc_html__( 'May Be Later', 'wts-eae' )
437
  );
438
  printf(
439
  '<a class="eae-notice-link" style="padding-right: 5px;" href="%1$s"><span class="dashicons dashicons-smiley" style="text-decoration : none; margin : 0px 3px;"></span>%2$s</a>',
440
  esc_url(
441
- add_query_arg( 'fv_not_interested', 'done' ) .
442
- add_query_arg( 'eae_nonce', wp_create_nonce( 'wp_rest' ) )
 
 
 
 
443
  ),
444
  esc_html__( 'Not Interested', 'wts-eae' )
445
  );
306
  return round( $datediff / 86400 );
307
  }
308
  public function eae_review() {
309
+ if(!isset( $_GET['remind_later'] ) && !isset( $_GET['review_done'] )){
310
+ add_action( 'admin_notices', [ $this, 'eae_review_box' ] );
311
+ }
312
+ if ( isset( $_GET['remind_later'] ) || isset( $_GET['review_done'] ) ) {
313
+ if ( !isset( $_GET['eae_nonce'] ) && ! wp_verify_nonce( $_GET['eae_nonce'], 'eae_notice_box' ) ) {
314
+ die( 'Sorry, your nonce did not verify!' );
315
+ }
316
  }
 
317
  if ( isset( $_GET['remind_later'] ) ) {
318
  $this->eae_remind_later();
319
  } elseif ( isset( $_GET['review_done'] ) ) {
320
  $this->eae_review_done();
321
+ }
 
 
322
  }
323
 
324
  public function eae_review_box( ) {
325
  ?>
326
+ <div class="notice notice-success">
327
  <p><?php echo 'I hope you are enjoying using <b>Elementor Addon Elements</b>. Could you please do a BIG favor and give it a 5-star rating on WordPress.org ? <br/> Just to help us spread the word and boost our motivation. <br/><b>~ Anand Upadhyay</b>'; ?></p>
328
  <p>
329
  <?php
335
  printf(
336
  '<a class="eae-notice-link" style="padding-right: 5px;" href="%1$s"><span class="dashicons dashicons-schedule" style="text-decoration : none; margin : 0px 3px;"></span>%2$s</a>',
337
  esc_url(
338
+
339
+ add_query_arg( ['remind_later' => 'later' ,
340
+ 'eae_nonce' => wp_create_nonce( 'eae_notice_box' ) ])
341
  ),
342
  esc_html__( 'May Be Later', 'wts-eae' )
343
  );
345
  printf(
346
  '<a class="eae-notice-link" style="padding-right: 5px;" href="%1$s"><span class="dashicons dashicons-smiley" style="text-decoration : none; margin : 0px 3px;"></span>%2$s</a>',
347
  esc_url(
348
+ add_query_arg( ['review_done' => 'done',
349
+ 'eae_nonce' => wp_create_nonce( 'eae_notice_box' ) ])
350
  ),
351
  esc_html__( 'Already Done', 'wts-eae' )
352
  );
353
+ ?>
354
+ <button type="button" class="notice-dismiss"><span class="screen-reader-text">Dismiss this notice.</span></button>
355
+ <?php
356
  ?>
357
  </p>
358
  </div>
372
  }
373
 
374
  public function fv_download_box() {
375
+
376
+ if( ! isset( $_GET['fv_download_later'] ) && ! isset( $_GET['fv_not_interested'] ) ){
377
+ $this->check_form_used();
378
  }
379
+ if ( isset( $_GET['fv_download_later'] ) || isset( $_GET['fv_not_interested'] ) ) {
380
+ if (!isset( $_GET['eae_nonce'] ) && ! wp_verify_nonce( $_GET['eae_nonce'], 'eae_notice_box' ) ) {
381
+ die( 'Sorry, your nonce did not verify!' );
382
+ }
383
+ }
384
+
385
  if ( isset( $_GET['fv_download_later'] ) ) {
386
  $this->fv_download_later();
387
  } elseif ( isset( $_GET['fv_not_interested'] ) ) {
388
  $this->fv_not_interested();
389
+ }
 
 
390
  }
391
  public function check_form_used() {
392
  if ( ! is_plugin_active( 'form-vibes/form-vibes.php' ) ) {
440
  printf(
441
  '<a class="eae-notice-link" style="padding-right: 5px;" href="%1$s"><span class="dashicons dashicons-schedule" style="text-decoration : none; margin : 0px 3px;"></span>%2$s</a>',
442
  esc_url(
443
+ add_query_arg( ['fv_download_later' =>'later',
444
+ 'eae_nonce'=> wp_create_nonce( 'eae_notice_box' )
445
+ ] )
446
  ),
447
  esc_html__( 'May Be Later', 'wts-eae' )
448
  );
449
  printf(
450
  '<a class="eae-notice-link" style="padding-right: 5px;" href="%1$s"><span class="dashicons dashicons-smiley" style="text-decoration : none; margin : 0px 3px;"></span>%2$s</a>',
451
  esc_url(
452
+ add_query_arg(
453
+ [
454
+ 'fv_not_interested' => 'done',
455
+ 'eae_nonce' => wp_create_nonce( 'eae_notice_box' )
456
+ ]
457
+ )
458
  ),
459
  esc_html__( 'Not Interested', 'wts-eae' )
460
  );
modules/content-switcher/widgets/content-switcher.php CHANGED
@@ -333,7 +333,7 @@ class Content_Switcher extends EAE_Widget_Base {
333
  'type' => Controls_Manager::COLOR,
334
  'selectors' => [
335
  '{{WRAPPER}} .eae-cs-label-wrapper .eae-content-switch-button .eae-content-switch-label' => 'color: {{VALUE}}',
336
- '{{WRAPPER}} .eae-content-switcher-wrapper .eae-cs-switch-wrapper .eae-content-switch-label' => 'color: {{VALUE}}',
337
  ],
338
  ]
339
  );
@@ -419,7 +419,7 @@ class Content_Switcher extends EAE_Widget_Base {
419
  'type' => Controls_Manager::COLOR,
420
  'selectors' => [
421
  '{{WRAPPER}} .eae-cs-label-wrapper .eae-content-switch-button.active .eae-content-switch-label' => 'color: {{VALUE}}',
422
- '{{WRAPPER}} .eae-content-switcher-wrapper .eae-cs-switch-wrapper .eae-content-switch-label.active' => 'color: {{VALUE}}',
423
 
424
  ],
425
  ]
333
  'type' => Controls_Manager::COLOR,
334
  'selectors' => [
335
  '{{WRAPPER}} .eae-cs-label-wrapper .eae-content-switch-button .eae-content-switch-label' => 'color: {{VALUE}}',
336
+ '{{WRAPPER}} .eae-content-switcher-wrapper .eae-cs-switch-wrapper .eae-content-switch-label h5' => 'color: {{VALUE}}',
337
  ],
338
  ]
339
  );
419
  'type' => Controls_Manager::COLOR,
420
  'selectors' => [
421
  '{{WRAPPER}} .eae-cs-label-wrapper .eae-content-switch-button.active .eae-content-switch-label' => 'color: {{VALUE}}',
422
+ '{{WRAPPER}} .eae-content-switcher-wrapper .eae-cs-switch-wrapper .eae-content-switch-label.active h5' => 'color: {{VALUE}}',
423
 
424
  ],
425
  ]
modules/modal-popup/widgets/modal-popup.php CHANGED
@@ -174,7 +174,7 @@ class ModalPopup extends EAE_Widget_Base {
174
  $this->add_responsive_control(
175
  'modal_height',
176
  [
177
- 'label' => __( 'Modal Width', 'wts-eae' ),
178
  'type' => Controls_Manager::SLIDER,
179
  'range' => [
180
  'px' => [
174
  $this->add_responsive_control(
175
  'modal_height',
176
  [
177
+ 'label' => __( 'Modal Height', 'wts-eae' ),
178
  'type' => Controls_Manager::SLIDER,
179
  'range' => [
180
  'px' => [
readme.txt CHANGED
@@ -2,15 +2,16 @@
2
  Plugin Name: Elementor Addon Elements
3
  Author: WPVibes
4
  Author URI: https://www.elementoraddons.com/
5
- Contributors: wpvibes, ritikasolanki, satishprajapati, hardiksharma
6
- Tags: elementor, addons, elements, elementor addon, elementor widget, page-builder, WordPress page builder, elementor extensions, elementor page builder, extension, WordPress website builder, elementor website builder
7
  Requires at least: 5.0
8
- Requires PHP: 5.7
9
- Tested up to: 5.7
10
  Stable tag: trunk
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
 
14
 
15
  == Description ==
16
 
@@ -126,6 +127,10 @@ New elements are added at the end of the default elementor widget area.
126
 
127
  == Changelog ==
128
 
 
 
 
 
129
  = 1.11.6 =
130
  * Fixed conflict with Gravity Forms.
131
 
2
  Plugin Name: Elementor Addon Elements
3
  Author: WPVibes
4
  Author URI: https://www.elementoraddons.com/
5
+ Contributors: wpvibes, satishprajapati, hardiksharma
6
+ Tags: elementor, addons, elements, elementor addon, elementor widget, page-builder, WordPress page builder, elementor extensions, elementor page builder, elementor website builder, extension, WordPress website builder
7
  Requires at least: 5.0
8
+ Requires PHP: 5.6
9
+ Tested up to: 5.8
10
  Stable tag: trunk
11
  License: GPLv2 or later
12
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
13
 
14
+ Elementor Addon Elements comes with 24+ widgets and extensions to extend the power of Elementor Page Builder.
15
 
16
  == Description ==
17
 
127
 
128
  == Changelog ==
129
 
130
+ = 1.11.7 =
131
+ * Fixed : Modal Popup Label Corrected for Height Control
132
+ * Fixed : Content Switcher Label CSS
133
+
134
  = 1.11.6 =
135
  * Fixed conflict with Gravity Forms.
136