Shortcodes and extra features for Phlox theme - Version 2.6.4

Version Description

Download this release

Release Info

Developer averta
Plugin Icon 128x128 Shortcodes and extra features for Phlox theme
Version 2.6.4
Comparing to
See all releases

Code changes from version 2.6.2 to 2.6.4

README.txt CHANGED
@@ -7,7 +7,7 @@ Tags: phlox, gallery, elementor, siteorigin, auxin, averta, auxin-elements, fram
7
  Requires PHP: 5.4
8
  Requires at least: 4.6
9
  Tested up to: 5.4.3
10
- Stable tag: 2.6.2
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl.html
13
 
7
  Requires PHP: 5.4
8
  Requires at least: 4.6
9
  Tested up to: 5.4.3
10
+ Stable tag: 2.6.4
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl.html
13
 
admin/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.6.2 (2020-07)
2
  * All required javascript plugins for admin
3
  * http://phlox.pro/
4
  * Place any jQuery/helper plugins in here, instead of separate, slower script files!
1
+ /*! Phlox Core Plugin - v2.6.4 (2020-08)
2
  * All required javascript plugins for admin
3
  * http://phlox.pro/
4
  * Place any jQuery/helper plugins in here, instead of separate, slower script files!
admin/includes/classes/class-auxels-system-check.php CHANGED
@@ -25,15 +25,15 @@ class Auxels_System_Check {
25
  'label' => __( 'Demo And Template Import Check By Averta', 'auxin-elements' ),
26
  'test' => array( $this, 'check_connecting_to_averta_servers' )
27
  );
28
-
29
  return $tests;
30
  }
31
-
32
  /**
33
  * Maximum execution time test
34
  */
35
  public function check_php_ini_settings() {
36
-
37
  $result = array(
38
  'label' => __( 'Required and recommended php ini settings passed successfully' ),
39
  'status' => 'good',
@@ -45,7 +45,7 @@ class Auxels_System_Check {
45
  'test' => 'auxin_check_php_ini_settings',
46
  'description' => __( 'Maximum execution time test passed', 'auxin-elements' )
47
  );
48
-
49
  if ( ! $this->check_maximum_execution_time() ) {
50
  $result['status'] = 'warning';
51
 
@@ -64,7 +64,7 @@ class Auxels_System_Check {
64
  $result['description'] = $output;
65
  $result['label'] = __( 'We recommend setting max execution time to at least 60.', 'auxin-elements' );
66
  }
67
-
68
  return $result;
69
  }
70
 
@@ -76,14 +76,14 @@ class Auxels_System_Check {
76
  return false;
77
  }
78
  }
79
-
80
  return true;
81
  }
82
  /**
83
  * Get num of system notices
84
  */
85
  public function get_num_of_notices() {
86
-
87
  $system_notices = ! $this->check_maximum_execution_time() ? 1 : 0;
88
 
89
  if ( ! extension_loaded( 'imagick' ) ) {
@@ -94,8 +94,8 @@ class Auxels_System_Check {
94
  ++$system_notices;
95
  }
96
 
97
- return $system_notices;
98
-
99
  }
100
 
101
  /**
@@ -119,7 +119,7 @@ class Auxels_System_Check {
119
 
120
  $class = 'error';
121
  $screen_reader = __( 'Error', 'auxin-elements' );
122
- $message = __( 'Your site can communicate securely with Phlox update services. <a href="https://docs.phlox.pro/article/206-error-activating-license" target="_blank">How to fix?</a>
123
  ', 'auxin-elements' );
124
  $message = "<span class='dashicons $class'><span class='screen-reader-text'>$screen_reader</span></span> $message";
125
 
@@ -131,7 +131,7 @@ class Auxels_System_Check {
131
  $output .= '</ul>';
132
  $result['description'] = $output;
133
  $result['label'] = __( 'Error while trying to connect to averta servers', 'auxin-elements' );
134
-
135
  }
136
  return $result;
137
  }
25
  'label' => __( 'Demo And Template Import Check By Averta', 'auxin-elements' ),
26
  'test' => array( $this, 'check_connecting_to_averta_servers' )
27
  );
28
+
29
  return $tests;
30
  }
31
+
32
  /**
33
  * Maximum execution time test
34
  */
35
  public function check_php_ini_settings() {
36
+
37
  $result = array(
38
  'label' => __( 'Required and recommended php ini settings passed successfully' ),
39
  'status' => 'good',
45
  'test' => 'auxin_check_php_ini_settings',
46
  'description' => __( 'Maximum execution time test passed', 'auxin-elements' )
47
  );
48
+
49
  if ( ! $this->check_maximum_execution_time() ) {
50
  $result['status'] = 'warning';
51
 
64
  $result['description'] = $output;
65
  $result['label'] = __( 'We recommend setting max execution time to at least 60.', 'auxin-elements' );
66
  }
67
+
68
  return $result;
69
  }
70
 
76
  return false;
77
  }
78
  }
79
+
80
  return true;
81
  }
82
  /**
83
  * Get num of system notices
84
  */
85
  public function get_num_of_notices() {
86
+
87
  $system_notices = ! $this->check_maximum_execution_time() ? 1 : 0;
88
 
89
  if ( ! extension_loaded( 'imagick' ) ) {
94
  ++$system_notices;
95
  }
96
 
97
+ return $system_notices;
98
+
99
  }
100
 
101
  /**
119
 
120
  $class = 'error';
121
  $screen_reader = __( 'Error', 'auxin-elements' );
122
+ $message = __( 'Your site cannot communicate securely with Phlox update services. <a href="https://docs.phlox.pro/article/206-error-activating-license" target="_blank">How to fix?</a>
123
  ', 'auxin-elements' );
124
  $message = "<span class='dashicons $class'><span class='screen-reader-text'>$screen_reader</span></span> $message";
125
 
131
  $output .= '</ul>';
132
  $result['description'] = $output;
133
  $result['label'] = __( 'Error while trying to connect to averta servers', 'auxin-elements' );
134
+
135
  }
136
  return $result;
137
  }
auxin-elements.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Phlox Core Elements
13
  * Plugin URI: https://wordpress.org/plugins/auxin-elements/
14
  * Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
15
- * Version: 2.6.2
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
12
  * Plugin Name: Phlox Core Elements
13
  * Plugin URI: https://wordpress.org/plugins/auxin-elements/
14
  * Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
15
+ * Version: 2.6.4
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
includes/classes/class-auxin-demo-importer.php CHANGED
@@ -654,7 +654,7 @@ class Auxin_Demo_Importer {
654
  case 'taxonomy':
655
  $get_term = get_term_by( 'name', $item_value['menu-item-title'], $item_value['menu-item-object'] );
656
  if( $get_term === false ){
657
- $item_value['menu-item-object-id'] = auxin_get_transient( 'auxin_category_new_id_of' . $item_value['menu-item-object-id'] );
658
  } else {
659
  $item_value['menu-item-object-id'] = is_object( $get_term ) ? (int) $get_term->term_id : 0;
660
  }
@@ -1816,6 +1816,14 @@ class Auxin_Demo_Importer {
1816
  }
1817
  }
1818
 
 
 
 
 
 
 
 
 
1819
  // remove empties
1820
  $matches = array_filter( $matches );
1821
 
654
  case 'taxonomy':
655
  $get_term = get_term_by( 'name', $item_value['menu-item-title'], $item_value['menu-item-object'] );
656
  if( $get_term === false ){
657
+ $item_value['menu-item-object-id'] = auxin_get_transient( 'auxin_category_new_id_of' . $item_value['menu-item-object-id'] ) ? auxin_get_transient( 'auxin_category_new_id_of' . $item_value['menu-item-object-id'] ) : 1 ;
658
  } else {
659
  $item_value['menu-item-object-id'] = is_object( $get_term ) ? (int) $get_term->term_id : 0;
660
  }
1816
  }
1817
  }
1818
 
1819
+ preg_match_all('/"selected_icon":(\{.*?\})/', $meta, $svg_urls, PREG_SET_ORDER );
1820
+ if ( !empty( $svg_urls ) ) {
1821
+ foreach ( $svg_urls as $svg_key => $svg_url ) {
1822
+ preg_match_all( '/\{\"url":.*?\}/' , $svg_url[0], $svg );
1823
+ $matches = !empty( $svg ) ? array_merge( $matches, $svg ) : $matches;
1824
+ }
1825
+ }
1826
+
1827
  // remove empties
1828
  $matches = array_filter( $matches );
1829
 
includes/define.php CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
12
  }
13
 
14
 
15
- define( 'AUXELS_VERSION' , '2.6.2' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
12
  }
13
 
14
 
15
+ define( 'AUXELS_VERSION' , '2.6.4' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
includes/elementor/widgets/carousel-navigation.php CHANGED
@@ -243,7 +243,7 @@ class CarouselNavigation extends Widget_Base {
243
  ]
244
  ],
245
  'selectors' => [
246
- '{{WRAPPER}} .aux-custom-nav' => 'width:{{SIZE}}{{UNIT}};'
247
  ]
248
  ]
249
  );
@@ -529,12 +529,23 @@ class CarouselNavigation extends Widget_Base {
529
  case 'custom':
530
  $prev_icon = isset( $settings['prev_icon']['value'] ) ? $settings['prev_icon']['value'] : $settings['prev_icon'];
531
  $next_icon = isset( $settings['next_icon']['value'] ) ? $settings['next_icon']['value'] : $settings['next_icon'];
 
 
 
532
  ;?>
533
  <div class="aux-prev aux-prev-custom aux-custom-nav">
 
534
  <span class="<?php echo esc_attr( $prev_icon ); ?>"></span>
 
 
 
535
  </div>
536
  <div class="aux-next aux-next-custom aux-custom-nav">
 
537
  <span class="<?php echo esc_attr( $next_icon ); ?>"></span>
 
 
 
538
  </div>
539
  <?php
540
  break;
243
  ]
244
  ],
245
  'selectors' => [
246
+ '{{WRAPPER}} .aux-custom-nav, {{WRAPPER}} .aux-custom-nav img' => 'width:{{SIZE}}{{UNIT}};'
247
  ]
248
  ]
249
  );
529
  case 'custom':
530
  $prev_icon = isset( $settings['prev_icon']['value'] ) ? $settings['prev_icon']['value'] : $settings['prev_icon'];
531
  $next_icon = isset( $settings['next_icon']['value'] ) ? $settings['next_icon']['value'] : $settings['next_icon'];
532
+
533
+ $prev_icon_url = ( ! empty( $settings['prev_icon']['value'] ) && $settings['prev_icon']['library'] == 'svg' ) ? $settings['prev_icon']['value']['url'] : '';
534
+ $next_icon_url = ( ! empty( $settings['next_icon']['value'] ) && $settings['next_icon']['library'] == 'svg' ) ? $settings['next_icon']['value']['url'] : '';
535
  ;?>
536
  <div class="aux-prev aux-prev-custom aux-custom-nav">
537
+ <?php if ( empty( $prev_icon_url ) ) { ?>
538
  <span class="<?php echo esc_attr( $prev_icon ); ?>"></span>
539
+ <?php } else { ?>
540
+ <img src="<?php echo esc_url( $prev_icon_url );?>">
541
+ <?php } ?>
542
  </div>
543
  <div class="aux-next aux-next-custom aux-custom-nav">
544
+ <?php if ( empty( $next_icon_url ) ) { ?>
545
  <span class="<?php echo esc_attr( $next_icon ); ?>"></span>
546
+ <?php } else { ?>
547
+ <img src="<?php echo esc_url( $next_icon_url );?>">
548
+ <?php } ?>
549
  </div>
550
  <?php
551
  break;
includes/elementor/widgets/custom-list.php CHANGED
@@ -490,7 +490,7 @@ class CustomList extends Widget_Base {
490
  'flex-end' => 'flex-end;text-align:right;'
491
  ],
492
  'selectors' => array(
493
- '{{WRAPPER}} .aux-icon-list-items' => 'justify-content: {{VALUE}}',
494
  )
495
  )
496
  );
@@ -934,7 +934,7 @@ class CustomList extends Widget_Base {
934
  Group_Control_Background::get_type(),
935
  array(
936
  'name' => 'icon_background_hover',
937
- 'selector' => '{{WRAPPER}} .aux-icon-list-item'
938
  )
939
  );
940
 
490
  'flex-end' => 'flex-end;text-align:right;'
491
  ],
492
  'selectors' => array(
493
+ '{{WRAPPER}} .aux-icon-list-item, {{WRAPPER}} .aux-icon-list-items' => 'justify-content: {{VALUE}}',
494
  )
495
  )
496
  );
934
  Group_Control_Background::get_type(),
935
  array(
936
  'name' => 'icon_background_hover',
937
+ 'selector' => '{{WRAPPER}} .aux-icon-list-item:hover'
938
  )
939
  );
940
 
includes/elementor/widgets/text.php CHANGED
@@ -541,6 +541,16 @@ class Text extends Widget_Base {
541
  )
542
  );
543
 
 
 
 
 
 
 
 
 
 
 
544
 
545
  $this->end_controls_tab();
546
 
@@ -589,7 +599,17 @@ class Text extends Widget_Base {
589
  )
590
  )
591
  );
592
-
 
 
 
 
 
 
 
 
 
 
593
  $this->add_control(
594
  'icon_transition',
595
  array(
541
  )
542
  );
543
 
544
+ $this->add_group_control(
545
+ Group_Control_Background::get_type(),
546
+ array(
547
+ 'name' => 'icon_background_normal',
548
+ 'label' => __( 'Background', 'auxin-elements' ),
549
+ 'types' => array( 'gradient' ),
550
+ 'selector' => '{{WRAPPER}} .aux-ico-box'
551
+ )
552
+ );
553
+
554
 
555
  $this->end_controls_tab();
556
 
599
  )
600
  )
601
  );
602
+
603
+ $this->add_group_control(
604
+ Group_Control_Background::get_type(),
605
+ array(
606
+ 'name' => 'icon_background_hover',
607
+ 'label' => __( 'Background', 'auxin-elements' ),
608
+ 'types' => array( 'gradient' ),
609
+ 'selector' => '{{WRAPPER}}:hover .aux-ico-box'
610
+ )
611
+ );
612
+
613
  $this->add_control(
614
  'icon_transition',
615
  array(
includes/elementor/widgets/theme-elements/modern-search.php CHANGED
@@ -805,11 +805,17 @@ class ModernSearch extends Widget_Base {
805
  $this->add_render_attribute( 'button', 'class', $args['submit_class'] );
806
  $this->add_render_attribute( 'button', 'data-target', $args['target'] );
807
  $this->add_render_attribute( 'submit_text', 'class', 'aux-submit-text' );
808
- $this->add_render_attribute( 'icon', 'class', $args['icon'] );
 
 
809
  ?>
810
  <div <?php echo $this->get_render_attribute_string( 'wrapper' );?> >
811
  <button <?php echo $this->get_render_attribute_string( 'button' );?> >
812
- <i <?php echo $this->get_render_attribute_string( 'icon' );?>></i>
 
 
 
 
813
  <span <?php echo $this->get_render_attribute_string( 'submit_text' );?> ><?php echo $args['submit_text']; ?></span>
814
  </button>
815
  </div>
805
  $this->add_render_attribute( 'button', 'class', $args['submit_class'] );
806
  $this->add_render_attribute( 'button', 'data-target', $args['target'] );
807
  $this->add_render_attribute( 'submit_text', 'class', 'aux-submit-text' );
808
+ if ( empty( $args['icon']['library'] ) || $args['icon']['library'] != 'svg' ) {
809
+ $this->add_render_attribute( 'icon', 'class', $args['icon'] );
810
+ }
811
  ?>
812
  <div <?php echo $this->get_render_attribute_string( 'wrapper' );?> >
813
  <button <?php echo $this->get_render_attribute_string( 'button' );?> >
814
+ <?php if ( empty( $args['icon']['library'] ) || $args['icon']['library'] != 'svg' ) { ?>
815
+ <i <?php echo $this->get_render_attribute_string( 'icon' );?>></i>
816
+ <?php } else { ?>
817
+ <img src="<?php echo esc_url( $args['icon']['value']['url'] ); ?>">
818
+ <?php } ?>
819
  <span <?php echo $this->get_render_attribute_string( 'submit_text' );?> ><?php echo $args['submit_text']; ?></span>
820
  </button>
821
  </div>
includes/elements/recent-posts-grid-carousel.php CHANGED
@@ -871,7 +871,7 @@ function auxin_widget_recent_posts_callback( $atts, $shortcode_content = null ){
871
  // specify the post formats that should be excluded -------
872
  $exclude_post_formats_in = (array) $exclude_post_formats_in;
873
 
874
- if( $exclude_custom_post_formats ){
875
  $exclude_post_formats_in = array_merge( $exclude_post_formats_in, array( 'aside', 'gallery', 'image', 'link', 'quote', 'video', 'audio' ) );
876
  }
877
  if( $exclude_quote_link ){
@@ -964,7 +964,7 @@ function auxin_widget_recent_posts_callback( $atts, $shortcode_content = null ){
964
  // generate columns class
965
  $column_class = 'aux-match-height aux-row aux-de-col' . $desktop_cnum;
966
 
967
- $column_class .= ' aux-tb-col'.$tablet_cnum . ' aux-mb-col'.$phone_cnum;
968
 
969
  $column_class .= 'entry-boxed' == $content_layout ? ' aux-entry-boxed' : '';
970
 
871
  // specify the post formats that should be excluded -------
872
  $exclude_post_formats_in = (array) $exclude_post_formats_in;
873
 
874
+ if( auxin_is_true( $exclude_custom_post_formats ) ){
875
  $exclude_post_formats_in = array_merge( $exclude_post_formats_in, array( 'aside', 'gallery', 'image', 'link', 'quote', 'video', 'audio' ) );
876
  }
877
  if( $exclude_quote_link ){
964
  // generate columns class
965
  $column_class = 'aux-match-height aux-row aux-de-col' . $desktop_cnum;
966
 
967
+ $column_class .= ' aux-tb-col'.$tablet_cnum . ' aux-mb-col'.$phone_cnum . ' aux-total-'. $wp_query->post_count;
968
 
969
  $column_class .= 'entry-boxed' == $content_layout ? ' aux-entry-boxed' : '';
970
 
languages/auxin-elements.pot CHANGED
@@ -1,9 +1,9 @@
1
  # Averta Copyright (c) {2020}
2
  msgid ""
3
  msgstr ""
4
- "Project-Id-Version: Phlox Core Elements 2.6.2\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
- "POT-Creation-Date: 2020-07-19 09:28:00+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
@@ -303,7 +303,7 @@ msgstr ""
303
 
304
  #: admin/includes/classes/class-auxels-system-check.php:122
305
  msgid ""
306
- "Your site can communicate securely with Phlox update services. <a "
307
  "href=\"https://docs.phlox.pro/article/206-error-activating-license\" "
308
  "target=\"_blank\">How to fix?</a>\n"
309
  " "
@@ -772,7 +772,7 @@ msgstr ""
772
  #: admin/includes/metaboxes/metabox-fields-general-footer.php:21
773
  #: includes/elementor/modules/documents/footer.php:34
774
  #: includes/elementor/modules/documents/footer.php:45
775
- #: includes/elementor/widgets/text.php:1544
776
  msgid "Footer"
777
  msgstr ""
778
 
@@ -1201,7 +1201,7 @@ msgstr ""
1201
  #: includes/elementor/widgets/staff.php:846
1202
  #: includes/elementor/widgets/svg.php:288
1203
  #: includes/elementor/widgets/testimonial.php:813
1204
- #: includes/elementor/widgets/text.php:1417
1205
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:435
1206
  #: includes/elementor/widgets/theme-elements/copyright.php:146
1207
  #: includes/elementor/widgets/theme-elements/current-time.php:139
@@ -1241,8 +1241,8 @@ msgstr ""
1241
  #: includes/elementor/widgets/svg.php:284
1242
  #: includes/elementor/widgets/testimonial.php:809
1243
  #: includes/elementor/widgets/text.php:367
1244
- #: includes/elementor/widgets/text.php:1114
1245
- #: includes/elementor/widgets/text.php:1413
1246
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:431
1247
  #: includes/elementor/widgets/theme-elements/copyright.php:142
1248
  #: includes/elementor/widgets/theme-elements/current-time.php:135
@@ -1300,7 +1300,7 @@ msgstr ""
1300
  #: includes/elementor/widgets/divider.php:146
1301
  #: includes/elementor/widgets/modern-button.php:311
1302
  #: includes/elementor/widgets/staff.php:755
1303
- #: includes/elementor/widgets/text.php:1010 includes/elements/button.php:66
1304
  #: includes/elements/divider.php:90 includes/elements/socials-list.php:63
1305
  #: includes/elements/staff.php:463 includes/elements/text.php:469
1306
  #: includes/elements/text.php:677 includes/general-hooks.php:689
@@ -1314,7 +1314,7 @@ msgstr ""
1314
  #: includes/elementor/widgets/divider.php:145
1315
  #: includes/elementor/widgets/modern-button.php:310
1316
  #: includes/elementor/widgets/staff.php:756
1317
- #: includes/elementor/widgets/text.php:1009
1318
  #: includes/elements/before-after.php:104 includes/elements/button.php:65
1319
  #: includes/elements/divider.php:89 includes/elements/instagram-feed.php:98
1320
  #: includes/elements/socials-list.php:64 includes/elements/staff.php:111
@@ -1329,7 +1329,7 @@ msgstr ""
1329
  #: includes/elementor/widgets/button.php:161
1330
  #: includes/elementor/widgets/modern-button.php:309
1331
  #: includes/elementor/widgets/staff.php:757
1332
- #: includes/elementor/widgets/text.php:1008
1333
  #: includes/elements/before-after.php:105 includes/elements/button.php:64
1334
  #: includes/elements/divider.php:88 includes/elements/socials-list.php:65
1335
  #: includes/elements/staff.php:110 includes/elements/staff.php:465
@@ -1395,7 +1395,7 @@ msgstr ""
1395
  #: includes/elementor/widgets/recent-posts-tiles-carousel.php:130
1396
  #: includes/elementor/widgets/recent-posts-tiles.php:130
1397
  #: includes/elementor/widgets/tabs.php:195
1398
- #: includes/elementor/widgets/text.php:1113
1399
  #: includes/elementor/widgets/theme-elements/menu.php:993
1400
  #: includes/elementor/widgets/theme-elements/modern-search.php:556
1401
  #: includes/elements/button.php:179 includes/elements/code.php:99
@@ -1471,14 +1471,14 @@ msgstr ""
1471
  #: includes/elementor/widgets/testimonial.php:511
1472
  #: includes/elementor/widgets/testimonial.php:629
1473
  #: includes/elementor/widgets/testimonial.php:923
1474
- #: includes/elementor/widgets/text.php:550
1475
- #: includes/elementor/widgets/text.php:693
1476
- #: includes/elementor/widgets/text.php:789
1477
- #: includes/elementor/widgets/text.php:900
1478
- #: includes/elementor/widgets/text.php:1067
1479
- #: includes/elementor/widgets/text.php:1187
1480
- #: includes/elementor/widgets/text.php:1262
1481
- #: includes/elementor/widgets/text.php:1492
1482
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:516
1483
  #: includes/elementor/widgets/theme-elements/copyright.php:212
1484
  #: includes/elementor/widgets/theme-elements/logo.php:327
@@ -2508,7 +2508,7 @@ msgid "Demo has been successfully uninstalled."
2508
  msgstr ""
2509
 
2510
  #: includes/classes/class-auxin-welcome.php:1288
2511
- #: public/includes/frontend-ajax.php:154 public/includes/frontend-ajax.php:211
2512
  msgid "An Error Occurred!"
2513
  msgstr ""
2514
 
@@ -2709,7 +2709,7 @@ msgstr ""
2709
  #: includes/elementor/widgets/recent-posts-tiles.php:92
2710
  #: includes/elementor/widgets/recent-posts-timeline.php:92
2711
  #: includes/elementor/widgets/recent-products.php:101
2712
- #: includes/elementor/widgets/theme-elements/modern-search.php:947
2713
  #: includes/elements/popular-posts-widget.php:16
2714
  #: includes/elements/recent-posts-grid-carousel.php:16
2715
  #: includes/elements/recent-posts-land-style.php:16
@@ -2947,8 +2947,8 @@ msgstr ""
2947
  #: includes/elementor/widgets/svg.php:292
2948
  #: includes/elementor/widgets/testimonial.php:817
2949
  #: includes/elementor/widgets/text.php:371
2950
- #: includes/elementor/widgets/text.php:1115
2951
- #: includes/elementor/widgets/text.php:1421
2952
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:439
2953
  #: includes/elementor/widgets/theme-elements/copyright.php:150
2954
  #: includes/elementor/widgets/theme-elements/current-time.php:143
@@ -3207,7 +3207,7 @@ msgstr ""
3207
  #: includes/elementor/widgets/recent-posts-timeline.php:519
3208
  #: includes/elementor/widgets/testimonial.php:238
3209
  #: includes/elementor/widgets/text.php:115
3210
- #: includes/elementor/widgets/text.php:1557
3211
  #: includes/elementor/widgets/theme-elements/menu.php:652
3212
  #: includes/elementor/widgets/theme-elements/search.php:118
3213
  #: includes/elements/flickr.php:156 includes/elements/flickr.php:205
@@ -3380,7 +3380,7 @@ msgstr ""
3380
  #: includes/elementor/widgets/staff.php:420
3381
  #: includes/elementor/widgets/tabs.php:373
3382
  #: includes/elementor/widgets/text.php:232
3383
- #: includes/elementor/widgets/text.php:660
3384
  #: includes/elementor/widgets/theme-elements/logo.php:454
3385
  #: includes/elementor/widgets/theme-elements/site-title.php:94
3386
  #: includes/elementor/widgets/touch-slider.php:332
@@ -4070,7 +4070,7 @@ msgstr ""
4070
  #: includes/elementor/widgets/testimonial.php:193
4071
  #: includes/elementor/widgets/text.php:225
4072
  #: includes/elementor/widgets/text.php:263
4073
- #: includes/elementor/widgets/text.php:869
4074
  #: includes/elements/accordion-widget.php:76 includes/elements/accordion.php:93
4075
  #: includes/elements/dropcap.php:82 includes/elements/highlight.php:78
4076
  #: includes/elements/staff.php:514 includes/elements/tabs.php:92
@@ -4197,7 +4197,7 @@ msgstr ""
4197
  #: includes/elementor/widgets/recent-products.php:522
4198
  #: includes/elementor/widgets/tabs.php:235
4199
  #: includes/elementor/widgets/tabs.php:493
4200
- #: includes/elementor/widgets/text.php:1448
4201
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:463
4202
  #: includes/elementor/widgets/theme-elements/logo.php:390
4203
  #: includes/elementor/widgets/theme-elements/menu.php:415
@@ -4280,14 +4280,14 @@ msgstr ""
4280
  #: includes/elementor/widgets/testimonial.php:591
4281
  #: includes/elementor/widgets/testimonial.php:887
4282
  #: includes/elementor/widgets/text.php:507
4283
- #: includes/elementor/widgets/text.php:673
4284
- #: includes/elementor/widgets/text.php:769
4285
- #: includes/elementor/widgets/text.php:880
4286
- #: includes/elementor/widgets/text.php:1040
4287
- #: includes/elementor/widgets/text.php:1167
4288
- #: includes/elementor/widgets/text.php:1224
4289
- #: includes/elementor/widgets/text.php:1356
4290
- #: includes/elementor/widgets/text.php:1464
4291
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:490
4292
  #: includes/elementor/widgets/theme-elements/copyright.php:175
4293
  #: includes/elementor/widgets/theme-elements/logo.php:293
@@ -4388,9 +4388,9 @@ msgstr ""
4388
  #: includes/elementor/widgets/testimonial.php:843
4389
  #: includes/elementor/widgets/text.php:392
4390
  #: includes/elementor/widgets/text.php:490
4391
- #: includes/elementor/widgets/text.php:941
4392
- #: includes/elementor/widgets/text.php:1375
4393
- #: includes/elementor/widgets/text.php:1436
4394
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:475
4395
  #: includes/elementor/widgets/theme-elements/menu.php:511
4396
  #: includes/elementor/widgets/theme-elements/menu.php:950
@@ -4519,16 +4519,16 @@ msgstr ""
4519
  #: includes/elementor/widgets/testimonial.php:521
4520
  #: includes/elementor/widgets/testimonial.php:601
4521
  #: includes/elementor/widgets/testimonial.php:639
4522
- #: includes/elementor/widgets/text.php:680
4523
  #: includes/elementor/widgets/text.php:700
4524
- #: includes/elementor/widgets/text.php:776
4525
  #: includes/elementor/widgets/text.php:796
4526
- #: includes/elementor/widgets/text.php:887
4527
  #: includes/elementor/widgets/text.php:907
4528
- #: includes/elementor/widgets/text.php:1174
4529
  #: includes/elementor/widgets/text.php:1194
4530
- #: includes/elementor/widgets/text.php:1231
4531
- #: includes/elementor/widgets/text.php:1269
 
4532
  #: includes/elementor/widgets/theme-elements/copyright.php:182
4533
  #: includes/elementor/widgets/theme-elements/copyright.php:219
4534
  #: includes/elementor/widgets/theme-elements/current-time.php:172
@@ -4881,7 +4881,7 @@ msgstr ""
4881
  #: includes/elementor/widgets/button.php:283
4882
  #: includes/elementor/widgets/modern-button.php:320
4883
  #: includes/elementor/widgets/tabs.php:149
4884
- #: includes/elementor/widgets/text.php:1028
4885
  #: includes/elementor/widgets/theme-elements/menu.php:610
4886
  #: includes/elements/audio.php:97
4887
  msgid "Skin"
@@ -4993,7 +4993,7 @@ msgstr ""
4993
  #: includes/elementor/widgets/modern-button.php:101
4994
  #: includes/elementor/widgets/modern-button.php:269
4995
  #: includes/elementor/widgets/text.php:278
4996
- #: includes/elementor/widgets/text.php:992
4997
  #: includes/elementor/widgets/theme-elements/modern-search.php:99
4998
  #: includes/elementor/widgets/theme-elements/modern-search.php:413
4999
  #: includes/elementor/widgets/theme-elements/search.php:120
@@ -5030,7 +5030,7 @@ msgstr ""
5030
  #: includes/elementor/widgets/heading-modern.php:1038
5031
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1532
5032
  #: includes/elementor/widgets/recent-posts-masonry.php:1073
5033
- #: includes/elementor/widgets/text.php:1393
5034
  msgid "Wrapper"
5035
  msgstr ""
5036
 
@@ -5041,7 +5041,7 @@ msgstr ""
5041
 
5042
  #: includes/elementor/widgets/button.php:160
5043
  #: includes/elementor/widgets/modern-button.php:308
5044
- #: includes/elementor/widgets/text.php:1007 includes/elements/button.php:63
5045
  #: includes/elements/text.php:674 includes/general-hooks.php:686
5046
  #: includes/general-hooks.php:1091
5047
  msgid "Exlarge"
@@ -5050,7 +5050,7 @@ msgstr ""
5050
  #: includes/elementor/widgets/button.php:164
5051
  #: includes/elementor/widgets/divider.php:147
5052
  #: includes/elementor/widgets/modern-button.php:312
5053
- #: includes/elementor/widgets/text.php:1011 includes/elements/button.php:67
5054
  #: includes/elements/divider.php:91 includes/elements/text.php:678
5055
  #: includes/general-hooks.php:690 includes/general-hooks.php:1095
5056
  msgid "Tiny"
@@ -5066,14 +5066,14 @@ msgid "Button shape"
5066
  msgstr ""
5067
 
5068
  #: includes/elementor/widgets/button.php:188
5069
- #: includes/elementor/widgets/text.php:1332 includes/elements/button.php:91
5070
  #: includes/elements/text.php:708
5071
  msgid "Box"
5072
  msgstr ""
5073
 
5074
  #: includes/elementor/widgets/button.php:192
5075
  #: includes/elementor/widgets/modern-button.php:295
5076
- #: includes/elementor/widgets/text.php:1336 includes/elements/button.php:95
5077
  #: includes/elements/text.php:712 includes/general-hooks.php:721
5078
  #: includes/general-hooks.php:1126
5079
  msgid "Round"
@@ -5081,7 +5081,7 @@ msgstr ""
5081
 
5082
  #: includes/elementor/widgets/button.php:196
5083
  #: includes/elementor/widgets/modern-button.php:296
5084
- #: includes/elementor/widgets/text.php:1340 includes/elements/button.php:99
5085
  #: includes/elements/text.php:716 includes/general-hooks.php:725
5086
  #: includes/general-hooks.php:1130
5087
  msgid "Curve"
@@ -5093,7 +5093,7 @@ msgid "Button style"
5093
  msgstr ""
5094
 
5095
  #: includes/elementor/widgets/button.php:215
5096
- #: includes/elementor/widgets/text.php:1360 includes/elements/button.php:122
5097
  #: includes/elements/text.php:742 includes/general-hooks.php:758
5098
  #: includes/general-hooks.php:1163
5099
  msgid "3D"
@@ -5101,7 +5101,7 @@ msgstr ""
5101
 
5102
  #: includes/elementor/widgets/button.php:219
5103
  #: includes/elementor/widgets/modern-button.php:282
5104
- #: includes/elementor/widgets/text.php:1364 includes/elements/button.php:126
5105
  #: includes/elements/text.php:746 includes/general-hooks.php:762
5106
  #: includes/general-hooks.php:1167
5107
  msgid "Outline"
@@ -5140,8 +5140,10 @@ msgstr ""
5140
  #: includes/elementor/widgets/testimonial.php:895
5141
  #: includes/elementor/widgets/testimonial.php:931
5142
  #: includes/elementor/widgets/text.php:383
5143
- #: includes/elementor/widgets/text.php:1048
5144
- #: includes/elementor/widgets/text.php:1075
 
 
5145
  #: includes/elementor/widgets/theme-elements/menu.php:397
5146
  #: includes/elementor/widgets/theme-elements/menu.php:474
5147
  #: includes/elementor/widgets/theme-elements/menu.php:587
@@ -5189,40 +5191,40 @@ msgid "Icon for button"
5189
  msgstr ""
5190
 
5191
  #: includes/elementor/widgets/button.php:373
5192
- #: includes/elementor/widgets/text.php:1109 includes/elements/button.php:171
5193
  #: includes/elements/text.php:800 includes/general-hooks.php:372
5194
  msgid "Icon alignment"
5195
  msgstr ""
5196
 
5197
  #: includes/elementor/widgets/button.php:380
5198
  #: includes/elementor/widgets/modern-button.php:804
5199
- #: includes/elementor/widgets/text.php:1116 includes/elements/button.php:191
5200
  #: includes/elements/text.php:809 includes/general-hooks.php:847
5201
  #: includes/general-hooks.php:1252
5202
  msgid "Over"
5203
  msgstr ""
5204
 
5205
  #: includes/elementor/widgets/button.php:381
5206
- #: includes/elementor/widgets/text.php:1117 includes/elements/button.php:195
5207
  #: includes/elements/text.php:810 includes/general-hooks.php:851
5208
  #: includes/general-hooks.php:1256
5209
  msgid "Animate from Left"
5210
  msgstr ""
5211
 
5212
  #: includes/elementor/widgets/button.php:382
5213
- #: includes/elementor/widgets/text.php:1118 includes/elements/text.php:811
5214
  msgid "Animate from Right"
5215
  msgstr ""
5216
 
5217
  #: includes/elementor/widgets/button.php:390
5218
  #: includes/elementor/widgets/text.php:429
5219
- #: includes/elementor/widgets/text.php:1130
5220
  #: includes/elementor/widgets/theme-elements/modern-search.php:657
5221
  msgid "Icon Size"
5222
  msgstr ""
5223
 
5224
  #: includes/elementor/widgets/button.php:413
5225
- #: includes/elementor/widgets/text.php:1315
5226
  #: includes/elementor/widgets/theme-elements/search.php:245
5227
  msgid "Icon Margin"
5228
  msgstr ""
@@ -5265,11 +5267,11 @@ msgstr ""
5265
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1895
5266
  #: includes/elementor/widgets/recent-posts-masonry.php:1255
5267
  #: includes/elementor/widgets/recent-posts-masonry.php:1311
5268
- #: includes/elementor/widgets/text.php:726
5269
- #: includes/elementor/widgets/text.php:822
5270
- #: includes/elementor/widgets/text.php:933
5271
- #: includes/elementor/widgets/text.php:1243
5272
- #: includes/elementor/widgets/text.php:1281
5273
  #: includes/elementor/widgets/theme-elements/current-time.php:184
5274
  #: includes/elementor/widgets/theme-elements/logo.php:507
5275
  #: includes/elementor/widgets/theme-elements/logo.php:599
@@ -5352,7 +5354,7 @@ msgstr ""
5352
  #: includes/elementor/widgets/modern-button.php:824
5353
  #: includes/elementor/widgets/modern-button.php:923
5354
  #: includes/elementor/widgets/testimonial.php:756
5355
- #: includes/elementor/widgets/text.php:1003
5356
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:268
5357
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:400
5358
  #: includes/elementor/widgets/theme-elements/modern-search.php:243
@@ -5845,7 +5847,7 @@ msgstr ""
5845
  #: includes/elementor/widgets/icon.php:140
5846
  #: includes/elementor/widgets/staff.php:200
5847
  #: includes/elementor/widgets/text.php:460
5848
- #: includes/elementor/widgets/text.php:629
5849
  #: includes/elements/about-widget.php:121 includes/elements/divider.php:69
5850
  #: includes/elements/dropcap.php:72 includes/elements/staff.php:168
5851
  #: includes/elements/text.php:539 includes/elements/text.php:581
@@ -6651,9 +6653,9 @@ msgstr ""
6651
  #: includes/elementor/widgets/staff.php:642
6652
  #: includes/elementor/widgets/testimonial.php:553
6653
  #: includes/elementor/widgets/testimonial.php:774
6654
- #: includes/elementor/widgets/text.php:734
6655
- #: includes/elementor/widgets/text.php:847
6656
- #: includes/elementor/widgets/text.php:970
6657
  msgid "Bottom space"
6658
  msgstr ""
6659
 
@@ -7891,8 +7893,8 @@ msgid "Table Even Rows"
7891
  msgstr ""
7892
 
7893
  #: includes/elementor/widgets/search.php:47
7894
- #: includes/elementor/widgets/theme-elements/modern-search.php:909
7895
- #: includes/elementor/widgets/theme-elements/modern-search.php:912
7896
  #: includes/elements/search.php:14
7897
  msgid "Search"
7898
  msgstr ""
@@ -7949,28 +7951,28 @@ msgid "Limit the number of words in the Content"
7949
  msgstr ""
7950
 
7951
  #: includes/elementor/widgets/staff.php:196
7952
- #: includes/elementor/widgets/text.php:621 includes/elements/staff.php:161
7953
  #: includes/elements/text.php:571
7954
  msgid "Image shape"
7955
  msgstr ""
7956
 
7957
  #: includes/elementor/widgets/staff.php:204
7958
  #: includes/elementor/widgets/text.php:464
7959
- #: includes/elementor/widgets/text.php:633 includes/elements/staff.php:172
7960
  #: includes/elements/text.php:543 includes/elements/text.php:585
7961
  msgid "Semi-circle"
7962
  msgstr ""
7963
 
7964
  #: includes/elementor/widgets/staff.php:208
7965
  #: includes/elementor/widgets/text.php:468
7966
- #: includes/elementor/widgets/text.php:637 includes/elements/staff.php:176
7967
  #: includes/elements/text.php:547 includes/elements/text.php:589
7968
  msgid "Round Rectangle"
7969
  msgstr ""
7970
 
7971
  #: includes/elementor/widgets/staff.php:212
7972
  #: includes/elementor/widgets/text.php:476
7973
- #: includes/elementor/widgets/text.php:641 includes/elements/staff.php:180
7974
  #: includes/elements/text.php:555 includes/elements/text.php:593
7975
  msgid "Rectangle"
7976
  msgstr ""
@@ -8016,14 +8018,14 @@ msgid "Instagram Address"
8016
  msgstr ""
8017
 
8018
  #: includes/elementor/widgets/staff.php:499
8019
- #: includes/elementor/widgets/text.php:830
8020
- #: includes/elementor/widgets/text.php:953
8021
  msgid "Top space"
8022
  msgstr ""
8023
 
8024
  #: includes/elementor/widgets/staff.php:543
8025
  #: includes/elementor/widgets/text.php:242
8026
- #: includes/elementor/widgets/text.php:756
8027
  #: includes/elements/recent-posts-grid-carousel.php:70
8028
  #: includes/elements/recent-products.php:56 includes/elements/text.php:59
8029
  msgid "Subtitle"
@@ -8057,7 +8059,7 @@ msgid "Wrappers"
8057
  msgstr ""
8058
 
8059
  #: includes/elementor/widgets/staff.php:838
8060
- #: includes/elementor/widgets/text.php:1409
8061
  #: includes/elementor/widgets/theme-elements/menu.php:324
8062
  #: includes/elementor/widgets/theme-elements/menu.php:1345
8063
  #: includes/elements/text.php:118
@@ -8268,68 +8270,68 @@ msgid "Cross Rectangle"
8268
  msgstr ""
8269
 
8270
  #: includes/elementor/widgets/text.php:523
8271
- #: includes/elementor/widgets/text.php:566
8272
  #: includes/elementor/widgets/theme-elements/search.php:233
8273
  #: includes/elements/text.php:445
8274
  msgid "Icon color"
8275
  msgstr ""
8276
 
8277
  #: includes/elementor/widgets/text.php:535
8278
- #: includes/elementor/widgets/text.php:581 includes/elements/text.php:486
8279
  msgid "Icon background color"
8280
  msgstr ""
8281
 
8282
- #: includes/elementor/widgets/text.php:596
8283
- #: includes/elementor/widgets/text.php:1517
8284
  msgid "Transition duration"
8285
  msgstr ""
8286
 
8287
- #: includes/elementor/widgets/text.php:625 includes/elements/text.php:577
8288
  msgid "Default Aspect"
8289
  msgstr ""
8290
 
8291
- #: includes/elementor/widgets/text.php:1019
8292
  msgid "Button Skin"
8293
  msgstr ""
8294
 
8295
- #: includes/elementor/widgets/text.php:1096
8296
  msgid "Button Icon"
8297
  msgstr ""
8298
 
8299
- #: includes/elementor/widgets/text.php:1209
8300
  msgid "Button Text"
8301
  msgstr ""
8302
 
8303
- #: includes/elementor/widgets/text.php:1302
8304
  msgid "Button Wrapper"
8305
  msgstr ""
8306
 
8307
- #: includes/elementor/widgets/text.php:1327
8308
  msgid "Shape Style"
8309
  msgstr ""
8310
 
8311
- #: includes/elementor/widgets/text.php:1351 includes/general-hooks.php:747
8312
  #: includes/general-hooks.php:1152
8313
  msgid "Button Style"
8314
  msgstr ""
8315
 
8316
- #: includes/elementor/widgets/text.php:1401
8317
  msgid "Overlay"
8318
  msgstr ""
8319
 
8320
- #: includes/elementor/widgets/text.php:1552 includes/elements/text.php:896
8321
  msgid "Footer Shape"
8322
  msgstr ""
8323
 
8324
- #: includes/elementor/widgets/text.php:1561 includes/elements/text.php:907
8325
  msgid "Wave"
8326
  msgstr ""
8327
 
8328
- #: includes/elementor/widgets/text.php:1565 includes/elements/text.php:911
8329
  msgid "Tail"
8330
  msgstr ""
8331
 
8332
- #: includes/elementor/widgets/text.php:1576 includes/elements/button.php:212
8333
  #: includes/elements/text.php:825
8334
  msgid "Color of button"
8335
  msgstr ""
@@ -8689,7 +8691,7 @@ msgstr ""
8689
  msgid "Right Position"
8690
  msgstr ""
8691
 
8692
- #: includes/elementor/widgets/theme-elements/modern-search.php:902
8693
  msgid "Search..."
8694
  msgstr ""
8695
 
@@ -11684,7 +11686,7 @@ msgstr ""
11684
  msgid "No data received."
11685
  msgstr ""
11686
 
11687
- #: public/includes/frontend-ajax.php:136 public/includes/frontend-ajax.php:180
11688
  msgid "Verification failed!"
11689
  msgstr ""
11690
 
@@ -11696,23 +11698,23 @@ msgstr ""
11696
  msgid "Item has been removed from your shopping cart."
11697
  msgstr ""
11698
 
11699
- #: public/includes/frontend-ajax.php:200
11700
  msgid "View cart"
11701
  msgstr ""
11702
 
11703
- #: public/includes/frontend-ajax.php:200
11704
  msgid "has been added to your cart."
11705
  msgstr ""
11706
 
11707
- #: public/includes/frontend-ajax.php:205
11708
  msgid "Sorry, this product cannot be purchased."
11709
  msgstr ""
11710
 
11711
- #: public/includes/frontend-ajax.php:261
11712
  msgid "From %s"
11713
  msgstr ""
11714
 
11715
- #: public/includes/frontend-ajax.php:262
11716
  msgid "Nothing found in %s"
11717
  msgstr ""
11718
 
1
  # Averta Copyright (c) {2020}
2
  msgid ""
3
  msgstr ""
4
+ "Project-Id-Version: Phlox Core Elements 2.6.4\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
+ "POT-Creation-Date: 2020-08-03 09:57:56+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
303
 
304
  #: admin/includes/classes/class-auxels-system-check.php:122
305
  msgid ""
306
+ "Your site cannot communicate securely with Phlox update services. <a "
307
  "href=\"https://docs.phlox.pro/article/206-error-activating-license\" "
308
  "target=\"_blank\">How to fix?</a>\n"
309
  " "
772
  #: admin/includes/metaboxes/metabox-fields-general-footer.php:21
773
  #: includes/elementor/modules/documents/footer.php:34
774
  #: includes/elementor/modules/documents/footer.php:45
775
+ #: includes/elementor/widgets/text.php:1564
776
  msgid "Footer"
777
  msgstr ""
778
 
1201
  #: includes/elementor/widgets/staff.php:846
1202
  #: includes/elementor/widgets/svg.php:288
1203
  #: includes/elementor/widgets/testimonial.php:813
1204
+ #: includes/elementor/widgets/text.php:1437
1205
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:435
1206
  #: includes/elementor/widgets/theme-elements/copyright.php:146
1207
  #: includes/elementor/widgets/theme-elements/current-time.php:139
1241
  #: includes/elementor/widgets/svg.php:284
1242
  #: includes/elementor/widgets/testimonial.php:809
1243
  #: includes/elementor/widgets/text.php:367
1244
+ #: includes/elementor/widgets/text.php:1134
1245
+ #: includes/elementor/widgets/text.php:1433
1246
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:431
1247
  #: includes/elementor/widgets/theme-elements/copyright.php:142
1248
  #: includes/elementor/widgets/theme-elements/current-time.php:135
1300
  #: includes/elementor/widgets/divider.php:146
1301
  #: includes/elementor/widgets/modern-button.php:311
1302
  #: includes/elementor/widgets/staff.php:755
1303
+ #: includes/elementor/widgets/text.php:1030 includes/elements/button.php:66
1304
  #: includes/elements/divider.php:90 includes/elements/socials-list.php:63
1305
  #: includes/elements/staff.php:463 includes/elements/text.php:469
1306
  #: includes/elements/text.php:677 includes/general-hooks.php:689
1314
  #: includes/elementor/widgets/divider.php:145
1315
  #: includes/elementor/widgets/modern-button.php:310
1316
  #: includes/elementor/widgets/staff.php:756
1317
+ #: includes/elementor/widgets/text.php:1029
1318
  #: includes/elements/before-after.php:104 includes/elements/button.php:65
1319
  #: includes/elements/divider.php:89 includes/elements/instagram-feed.php:98
1320
  #: includes/elements/socials-list.php:64 includes/elements/staff.php:111
1329
  #: includes/elementor/widgets/button.php:161
1330
  #: includes/elementor/widgets/modern-button.php:309
1331
  #: includes/elementor/widgets/staff.php:757
1332
+ #: includes/elementor/widgets/text.php:1028
1333
  #: includes/elements/before-after.php:105 includes/elements/button.php:64
1334
  #: includes/elements/divider.php:88 includes/elements/socials-list.php:65
1335
  #: includes/elements/staff.php:110 includes/elements/staff.php:465
1395
  #: includes/elementor/widgets/recent-posts-tiles-carousel.php:130
1396
  #: includes/elementor/widgets/recent-posts-tiles.php:130
1397
  #: includes/elementor/widgets/tabs.php:195
1398
+ #: includes/elementor/widgets/text.php:1133
1399
  #: includes/elementor/widgets/theme-elements/menu.php:993
1400
  #: includes/elementor/widgets/theme-elements/modern-search.php:556
1401
  #: includes/elements/button.php:179 includes/elements/code.php:99
1471
  #: includes/elementor/widgets/testimonial.php:511
1472
  #: includes/elementor/widgets/testimonial.php:629
1473
  #: includes/elementor/widgets/testimonial.php:923
1474
+ #: includes/elementor/widgets/text.php:560
1475
+ #: includes/elementor/widgets/text.php:713
1476
+ #: includes/elementor/widgets/text.php:809
1477
+ #: includes/elementor/widgets/text.php:920
1478
+ #: includes/elementor/widgets/text.php:1087
1479
+ #: includes/elementor/widgets/text.php:1207
1480
+ #: includes/elementor/widgets/text.php:1282
1481
+ #: includes/elementor/widgets/text.php:1512
1482
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:516
1483
  #: includes/elementor/widgets/theme-elements/copyright.php:212
1484
  #: includes/elementor/widgets/theme-elements/logo.php:327
2508
  msgstr ""
2509
 
2510
  #: includes/classes/class-auxin-welcome.php:1288
2511
+ #: public/includes/frontend-ajax.php:154 public/includes/frontend-ajax.php:210
2512
  msgid "An Error Occurred!"
2513
  msgstr ""
2514
 
2709
  #: includes/elementor/widgets/recent-posts-tiles.php:92
2710
  #: includes/elementor/widgets/recent-posts-timeline.php:92
2711
  #: includes/elementor/widgets/recent-products.php:101
2712
+ #: includes/elementor/widgets/theme-elements/modern-search.php:953
2713
  #: includes/elements/popular-posts-widget.php:16
2714
  #: includes/elements/recent-posts-grid-carousel.php:16
2715
  #: includes/elements/recent-posts-land-style.php:16
2947
  #: includes/elementor/widgets/svg.php:292
2948
  #: includes/elementor/widgets/testimonial.php:817
2949
  #: includes/elementor/widgets/text.php:371
2950
+ #: includes/elementor/widgets/text.php:1135
2951
+ #: includes/elementor/widgets/text.php:1441
2952
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:439
2953
  #: includes/elementor/widgets/theme-elements/copyright.php:150
2954
  #: includes/elementor/widgets/theme-elements/current-time.php:143
3207
  #: includes/elementor/widgets/recent-posts-timeline.php:519
3208
  #: includes/elementor/widgets/testimonial.php:238
3209
  #: includes/elementor/widgets/text.php:115
3210
+ #: includes/elementor/widgets/text.php:1577
3211
  #: includes/elementor/widgets/theme-elements/menu.php:652
3212
  #: includes/elementor/widgets/theme-elements/search.php:118
3213
  #: includes/elements/flickr.php:156 includes/elements/flickr.php:205
3380
  #: includes/elementor/widgets/staff.php:420
3381
  #: includes/elementor/widgets/tabs.php:373
3382
  #: includes/elementor/widgets/text.php:232
3383
+ #: includes/elementor/widgets/text.php:680
3384
  #: includes/elementor/widgets/theme-elements/logo.php:454
3385
  #: includes/elementor/widgets/theme-elements/site-title.php:94
3386
  #: includes/elementor/widgets/touch-slider.php:332
4070
  #: includes/elementor/widgets/testimonial.php:193
4071
  #: includes/elementor/widgets/text.php:225
4072
  #: includes/elementor/widgets/text.php:263
4073
+ #: includes/elementor/widgets/text.php:889
4074
  #: includes/elements/accordion-widget.php:76 includes/elements/accordion.php:93
4075
  #: includes/elements/dropcap.php:82 includes/elements/highlight.php:78
4076
  #: includes/elements/staff.php:514 includes/elements/tabs.php:92
4197
  #: includes/elementor/widgets/recent-products.php:522
4198
  #: includes/elementor/widgets/tabs.php:235
4199
  #: includes/elementor/widgets/tabs.php:493
4200
+ #: includes/elementor/widgets/text.php:1468
4201
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:463
4202
  #: includes/elementor/widgets/theme-elements/logo.php:390
4203
  #: includes/elementor/widgets/theme-elements/menu.php:415
4280
  #: includes/elementor/widgets/testimonial.php:591
4281
  #: includes/elementor/widgets/testimonial.php:887
4282
  #: includes/elementor/widgets/text.php:507
4283
+ #: includes/elementor/widgets/text.php:693
4284
+ #: includes/elementor/widgets/text.php:789
4285
+ #: includes/elementor/widgets/text.php:900
4286
+ #: includes/elementor/widgets/text.php:1060
4287
+ #: includes/elementor/widgets/text.php:1187
4288
+ #: includes/elementor/widgets/text.php:1244
4289
+ #: includes/elementor/widgets/text.php:1376
4290
+ #: includes/elementor/widgets/text.php:1484
4291
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:490
4292
  #: includes/elementor/widgets/theme-elements/copyright.php:175
4293
  #: includes/elementor/widgets/theme-elements/logo.php:293
4388
  #: includes/elementor/widgets/testimonial.php:843
4389
  #: includes/elementor/widgets/text.php:392
4390
  #: includes/elementor/widgets/text.php:490
4391
+ #: includes/elementor/widgets/text.php:961
4392
+ #: includes/elementor/widgets/text.php:1395
4393
+ #: includes/elementor/widgets/text.php:1456
4394
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:475
4395
  #: includes/elementor/widgets/theme-elements/menu.php:511
4396
  #: includes/elementor/widgets/theme-elements/menu.php:950
4519
  #: includes/elementor/widgets/testimonial.php:521
4520
  #: includes/elementor/widgets/testimonial.php:601
4521
  #: includes/elementor/widgets/testimonial.php:639
 
4522
  #: includes/elementor/widgets/text.php:700
4523
+ #: includes/elementor/widgets/text.php:720
4524
  #: includes/elementor/widgets/text.php:796
4525
+ #: includes/elementor/widgets/text.php:816
4526
  #: includes/elementor/widgets/text.php:907
4527
+ #: includes/elementor/widgets/text.php:927
4528
  #: includes/elementor/widgets/text.php:1194
4529
+ #: includes/elementor/widgets/text.php:1214
4530
+ #: includes/elementor/widgets/text.php:1251
4531
+ #: includes/elementor/widgets/text.php:1289
4532
  #: includes/elementor/widgets/theme-elements/copyright.php:182
4533
  #: includes/elementor/widgets/theme-elements/copyright.php:219
4534
  #: includes/elementor/widgets/theme-elements/current-time.php:172
4881
  #: includes/elementor/widgets/button.php:283
4882
  #: includes/elementor/widgets/modern-button.php:320
4883
  #: includes/elementor/widgets/tabs.php:149
4884
+ #: includes/elementor/widgets/text.php:1048
4885
  #: includes/elementor/widgets/theme-elements/menu.php:610
4886
  #: includes/elements/audio.php:97
4887
  msgid "Skin"
4993
  #: includes/elementor/widgets/modern-button.php:101
4994
  #: includes/elementor/widgets/modern-button.php:269
4995
  #: includes/elementor/widgets/text.php:278
4996
+ #: includes/elementor/widgets/text.php:1012
4997
  #: includes/elementor/widgets/theme-elements/modern-search.php:99
4998
  #: includes/elementor/widgets/theme-elements/modern-search.php:413
4999
  #: includes/elementor/widgets/theme-elements/search.php:120
5030
  #: includes/elementor/widgets/heading-modern.php:1038
5031
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1532
5032
  #: includes/elementor/widgets/recent-posts-masonry.php:1073
5033
+ #: includes/elementor/widgets/text.php:1413
5034
  msgid "Wrapper"
5035
  msgstr ""
5036
 
5041
 
5042
  #: includes/elementor/widgets/button.php:160
5043
  #: includes/elementor/widgets/modern-button.php:308
5044
+ #: includes/elementor/widgets/text.php:1027 includes/elements/button.php:63
5045
  #: includes/elements/text.php:674 includes/general-hooks.php:686
5046
  #: includes/general-hooks.php:1091
5047
  msgid "Exlarge"
5050
  #: includes/elementor/widgets/button.php:164
5051
  #: includes/elementor/widgets/divider.php:147
5052
  #: includes/elementor/widgets/modern-button.php:312
5053
+ #: includes/elementor/widgets/text.php:1031 includes/elements/button.php:67
5054
  #: includes/elements/divider.php:91 includes/elements/text.php:678
5055
  #: includes/general-hooks.php:690 includes/general-hooks.php:1095
5056
  msgid "Tiny"
5066
  msgstr ""
5067
 
5068
  #: includes/elementor/widgets/button.php:188
5069
+ #: includes/elementor/widgets/text.php:1352 includes/elements/button.php:91
5070
  #: includes/elements/text.php:708
5071
  msgid "Box"
5072
  msgstr ""
5073
 
5074
  #: includes/elementor/widgets/button.php:192
5075
  #: includes/elementor/widgets/modern-button.php:295
5076
+ #: includes/elementor/widgets/text.php:1356 includes/elements/button.php:95
5077
  #: includes/elements/text.php:712 includes/general-hooks.php:721
5078
  #: includes/general-hooks.php:1126
5079
  msgid "Round"
5081
 
5082
  #: includes/elementor/widgets/button.php:196
5083
  #: includes/elementor/widgets/modern-button.php:296
5084
+ #: includes/elementor/widgets/text.php:1360 includes/elements/button.php:99
5085
  #: includes/elements/text.php:716 includes/general-hooks.php:725
5086
  #: includes/general-hooks.php:1130
5087
  msgid "Curve"
5093
  msgstr ""
5094
 
5095
  #: includes/elementor/widgets/button.php:215
5096
+ #: includes/elementor/widgets/text.php:1380 includes/elements/button.php:122
5097
  #: includes/elements/text.php:742 includes/general-hooks.php:758
5098
  #: includes/general-hooks.php:1163
5099
  msgid "3D"
5101
 
5102
  #: includes/elementor/widgets/button.php:219
5103
  #: includes/elementor/widgets/modern-button.php:282
5104
+ #: includes/elementor/widgets/text.php:1384 includes/elements/button.php:126
5105
  #: includes/elements/text.php:746 includes/general-hooks.php:762
5106
  #: includes/general-hooks.php:1167
5107
  msgid "Outline"
5140
  #: includes/elementor/widgets/testimonial.php:895
5141
  #: includes/elementor/widgets/testimonial.php:931
5142
  #: includes/elementor/widgets/text.php:383
5143
+ #: includes/elementor/widgets/text.php:548
5144
+ #: includes/elementor/widgets/text.php:607
5145
+ #: includes/elementor/widgets/text.php:1068
5146
+ #: includes/elementor/widgets/text.php:1095
5147
  #: includes/elementor/widgets/theme-elements/menu.php:397
5148
  #: includes/elementor/widgets/theme-elements/menu.php:474
5149
  #: includes/elementor/widgets/theme-elements/menu.php:587
5191
  msgstr ""
5192
 
5193
  #: includes/elementor/widgets/button.php:373
5194
+ #: includes/elementor/widgets/text.php:1129 includes/elements/button.php:171
5195
  #: includes/elements/text.php:800 includes/general-hooks.php:372
5196
  msgid "Icon alignment"
5197
  msgstr ""
5198
 
5199
  #: includes/elementor/widgets/button.php:380
5200
  #: includes/elementor/widgets/modern-button.php:804
5201
+ #: includes/elementor/widgets/text.php:1136 includes/elements/button.php:191
5202
  #: includes/elements/text.php:809 includes/general-hooks.php:847
5203
  #: includes/general-hooks.php:1252
5204
  msgid "Over"
5205
  msgstr ""
5206
 
5207
  #: includes/elementor/widgets/button.php:381
5208
+ #: includes/elementor/widgets/text.php:1137 includes/elements/button.php:195
5209
  #: includes/elements/text.php:810 includes/general-hooks.php:851
5210
  #: includes/general-hooks.php:1256
5211
  msgid "Animate from Left"
5212
  msgstr ""
5213
 
5214
  #: includes/elementor/widgets/button.php:382
5215
+ #: includes/elementor/widgets/text.php:1138 includes/elements/text.php:811
5216
  msgid "Animate from Right"
5217
  msgstr ""
5218
 
5219
  #: includes/elementor/widgets/button.php:390
5220
  #: includes/elementor/widgets/text.php:429
5221
+ #: includes/elementor/widgets/text.php:1150
5222
  #: includes/elementor/widgets/theme-elements/modern-search.php:657
5223
  msgid "Icon Size"
5224
  msgstr ""
5225
 
5226
  #: includes/elementor/widgets/button.php:413
5227
+ #: includes/elementor/widgets/text.php:1335
5228
  #: includes/elementor/widgets/theme-elements/search.php:245
5229
  msgid "Icon Margin"
5230
  msgstr ""
5267
  #: includes/elementor/widgets/recent-posts-grid-carousel.php:1895
5268
  #: includes/elementor/widgets/recent-posts-masonry.php:1255
5269
  #: includes/elementor/widgets/recent-posts-masonry.php:1311
5270
+ #: includes/elementor/widgets/text.php:746
5271
+ #: includes/elementor/widgets/text.php:842
5272
+ #: includes/elementor/widgets/text.php:953
5273
+ #: includes/elementor/widgets/text.php:1263
5274
+ #: includes/elementor/widgets/text.php:1301
5275
  #: includes/elementor/widgets/theme-elements/current-time.php:184
5276
  #: includes/elementor/widgets/theme-elements/logo.php:507
5277
  #: includes/elementor/widgets/theme-elements/logo.php:599
5354
  #: includes/elementor/widgets/modern-button.php:824
5355
  #: includes/elementor/widgets/modern-button.php:923
5356
  #: includes/elementor/widgets/testimonial.php:756
5357
+ #: includes/elementor/widgets/text.php:1023
5358
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:268
5359
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:400
5360
  #: includes/elementor/widgets/theme-elements/modern-search.php:243
5847
  #: includes/elementor/widgets/icon.php:140
5848
  #: includes/elementor/widgets/staff.php:200
5849
  #: includes/elementor/widgets/text.php:460
5850
+ #: includes/elementor/widgets/text.php:649
5851
  #: includes/elements/about-widget.php:121 includes/elements/divider.php:69
5852
  #: includes/elements/dropcap.php:72 includes/elements/staff.php:168
5853
  #: includes/elements/text.php:539 includes/elements/text.php:581
6653
  #: includes/elementor/widgets/staff.php:642
6654
  #: includes/elementor/widgets/testimonial.php:553
6655
  #: includes/elementor/widgets/testimonial.php:774
6656
+ #: includes/elementor/widgets/text.php:754
6657
+ #: includes/elementor/widgets/text.php:867
6658
+ #: includes/elementor/widgets/text.php:990
6659
  msgid "Bottom space"
6660
  msgstr ""
6661
 
7893
  msgstr ""
7894
 
7895
  #: includes/elementor/widgets/search.php:47
7896
+ #: includes/elementor/widgets/theme-elements/modern-search.php:915
7897
+ #: includes/elementor/widgets/theme-elements/modern-search.php:918
7898
  #: includes/elements/search.php:14
7899
  msgid "Search"
7900
  msgstr ""
7951
  msgstr ""
7952
 
7953
  #: includes/elementor/widgets/staff.php:196
7954
+ #: includes/elementor/widgets/text.php:641 includes/elements/staff.php:161
7955
  #: includes/elements/text.php:571
7956
  msgid "Image shape"
7957
  msgstr ""
7958
 
7959
  #: includes/elementor/widgets/staff.php:204
7960
  #: includes/elementor/widgets/text.php:464
7961
+ #: includes/elementor/widgets/text.php:653 includes/elements/staff.php:172
7962
  #: includes/elements/text.php:543 includes/elements/text.php:585
7963
  msgid "Semi-circle"
7964
  msgstr ""
7965
 
7966
  #: includes/elementor/widgets/staff.php:208
7967
  #: includes/elementor/widgets/text.php:468
7968
+ #: includes/elementor/widgets/text.php:657 includes/elements/staff.php:176
7969
  #: includes/elements/text.php:547 includes/elements/text.php:589
7970
  msgid "Round Rectangle"
7971
  msgstr ""
7972
 
7973
  #: includes/elementor/widgets/staff.php:212
7974
  #: includes/elementor/widgets/text.php:476
7975
+ #: includes/elementor/widgets/text.php:661 includes/elements/staff.php:180
7976
  #: includes/elements/text.php:555 includes/elements/text.php:593
7977
  msgid "Rectangle"
7978
  msgstr ""
8018
  msgstr ""
8019
 
8020
  #: includes/elementor/widgets/staff.php:499
8021
+ #: includes/elementor/widgets/text.php:850
8022
+ #: includes/elementor/widgets/text.php:973
8023
  msgid "Top space"
8024
  msgstr ""
8025
 
8026
  #: includes/elementor/widgets/staff.php:543
8027
  #: includes/elementor/widgets/text.php:242
8028
+ #: includes/elementor/widgets/text.php:776
8029
  #: includes/elements/recent-posts-grid-carousel.php:70
8030
  #: includes/elements/recent-products.php:56 includes/elements/text.php:59
8031
  msgid "Subtitle"
8059
  msgstr ""
8060
 
8061
  #: includes/elementor/widgets/staff.php:838
8062
+ #: includes/elementor/widgets/text.php:1429
8063
  #: includes/elementor/widgets/theme-elements/menu.php:324
8064
  #: includes/elementor/widgets/theme-elements/menu.php:1345
8065
  #: includes/elements/text.php:118
8270
  msgstr ""
8271
 
8272
  #: includes/elementor/widgets/text.php:523
8273
+ #: includes/elementor/widgets/text.php:576
8274
  #: includes/elementor/widgets/theme-elements/search.php:233
8275
  #: includes/elements/text.php:445
8276
  msgid "Icon color"
8277
  msgstr ""
8278
 
8279
  #: includes/elementor/widgets/text.php:535
8280
+ #: includes/elementor/widgets/text.php:591 includes/elements/text.php:486
8281
  msgid "Icon background color"
8282
  msgstr ""
8283
 
8284
+ #: includes/elementor/widgets/text.php:616
8285
+ #: includes/elementor/widgets/text.php:1537
8286
  msgid "Transition duration"
8287
  msgstr ""
8288
 
8289
+ #: includes/elementor/widgets/text.php:645 includes/elements/text.php:577
8290
  msgid "Default Aspect"
8291
  msgstr ""
8292
 
8293
+ #: includes/elementor/widgets/text.php:1039
8294
  msgid "Button Skin"
8295
  msgstr ""
8296
 
8297
+ #: includes/elementor/widgets/text.php:1116
8298
  msgid "Button Icon"
8299
  msgstr ""
8300
 
8301
+ #: includes/elementor/widgets/text.php:1229
8302
  msgid "Button Text"
8303
  msgstr ""
8304
 
8305
+ #: includes/elementor/widgets/text.php:1322
8306
  msgid "Button Wrapper"
8307
  msgstr ""
8308
 
8309
+ #: includes/elementor/widgets/text.php:1347
8310
  msgid "Shape Style"
8311
  msgstr ""
8312
 
8313
+ #: includes/elementor/widgets/text.php:1371 includes/general-hooks.php:747
8314
  #: includes/general-hooks.php:1152
8315
  msgid "Button Style"
8316
  msgstr ""
8317
 
8318
+ #: includes/elementor/widgets/text.php:1421
8319
  msgid "Overlay"
8320
  msgstr ""
8321
 
8322
+ #: includes/elementor/widgets/text.php:1572 includes/elements/text.php:896
8323
  msgid "Footer Shape"
8324
  msgstr ""
8325
 
8326
+ #: includes/elementor/widgets/text.php:1581 includes/elements/text.php:907
8327
  msgid "Wave"
8328
  msgstr ""
8329
 
8330
+ #: includes/elementor/widgets/text.php:1585 includes/elements/text.php:911
8331
  msgid "Tail"
8332
  msgstr ""
8333
 
8334
+ #: includes/elementor/widgets/text.php:1596 includes/elements/button.php:212
8335
  #: includes/elements/text.php:825
8336
  msgid "Color of button"
8337
  msgstr ""
8691
  msgid "Right Position"
8692
  msgstr ""
8693
 
8694
+ #: includes/elementor/widgets/theme-elements/modern-search.php:908
8695
  msgid "Search..."
8696
  msgstr ""
8697
 
11686
  msgid "No data received."
11687
  msgstr ""
11688
 
11689
+ #: public/includes/frontend-ajax.php:136 public/includes/frontend-ajax.php:179
11690
  msgid "Verification failed!"
11691
  msgstr ""
11692
 
11698
  msgid "Item has been removed from your shopping cart."
11699
  msgstr ""
11700
 
11701
+ #: public/includes/frontend-ajax.php:199
11702
  msgid "View cart"
11703
  msgstr ""
11704
 
11705
+ #: public/includes/frontend-ajax.php:199
11706
  msgid "has been added to your cart."
11707
  msgstr ""
11708
 
11709
+ #: public/includes/frontend-ajax.php:204
11710
  msgid "Sorry, this product cannot be purchased."
11711
  msgstr ""
11712
 
11713
+ #: public/includes/frontend-ajax.php:260
11714
  msgid "From %s"
11715
  msgstr ""
11716
 
11717
+ #: public/includes/frontend-ajax.php:261
11718
  msgid "Nothing found in %s"
11719
  msgstr ""
11720
 
public/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.6.2 (2020-07)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */
1
+ /*! Phlox Core Plugin - v2.6.4 (2020-08)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */
public/includes/frontend-ajax.php CHANGED
@@ -173,10 +173,9 @@ function auxels_add_product_to_cart() {
173
 
174
  $product_id = isset( $_POST['product_id'] ) ? absint( $_POST['product_id'] ) : '';
175
  $quantity = empty( $_POST['quantity'] ) ? 1 : wc_stock_amount( $_POST['quantity'] );
176
- $verify_nonce = isset( $_POST['verify_nonce'] ) ? $_POST['verify_nonce'] : '';
177
  $passed_validation = apply_filters( 'woocommerce_add_to_cart_validation', true, $product_id, $quantity );
178
 
179
- if( empty( $product_id ) || ! wp_verify_nonce( $verify_nonce, 'aux_add_to_cart-' . $product_id ) ){
180
  wp_send_json_error( sprintf( '<div class="aux-woocommerce-ajax-notification woocommerce-error">%s</div>', __('Verification failed!', 'auxin-elements') ) );
181
  } else {
182
  // Add item to cart
173
 
174
  $product_id = isset( $_POST['product_id'] ) ? absint( $_POST['product_id'] ) : '';
175
  $quantity = empty( $_POST['quantity'] ) ? 1 : wc_stock_amount( $_POST['quantity'] );
 
176
  $passed_validation = apply_filters( 'woocommerce_add_to_cart_validation', true, $product_id, $quantity );
177
 
178
+ if( empty( $product_id ) ){
179
  wp_send_json_error( sprintf( '<div class="aux-woocommerce-ajax-notification woocommerce-error">%s</div>', __('Verification failed!', 'auxin-elements') ) );
180
  } else {
181
  // Add item to cart