Shortcodes and extra features for Phlox theme - Version 2.6.19

Version Description

Download this release

Release Info

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

Code changes from version 2.6.17 to 2.6.19

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.5.0
10
- Stable tag: 2.6.17
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.5.0
10
+ Stable tag: 2.6.19
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.17 (2020-09)
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.19 (2020-10)
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!
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.17
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.19
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
includes/classes/class-auxels-wc-attribute-nav-menu.php ADDED
@@ -0,0 +1,174 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Woocommerce attributes nav menu Class.
4
+ *
5
+ *
6
+ * @package Auxin
7
+ * @license LICENSE.txt
8
+ * @author averta
9
+ * @link http://phlox.pro/
10
+ * @copyright (c) 2010-2020 averta
11
+ */
12
+
13
+ // no direct access allowed
14
+ if ( ! defined('ABSPATH') ) {
15
+ die();
16
+ }
17
+
18
+ /**
19
+ * Class to add woocommerce attributes filter as nav menu item
20
+ */
21
+ class Auxels_WC_Attribute_Nav_Menu {
22
+
23
+ /**
24
+ * Instance of this class.
25
+ *
26
+ * @var object
27
+ */
28
+ protected static $instance = null;
29
+
30
+ /**
31
+ * Return an instance of this class.
32
+ *
33
+ * @return object A single instance of this class.
34
+ */
35
+ public static function get_instance() {
36
+
37
+ // If the single instance hasn't been set, set it now.
38
+ if ( null == self::$instance ) {
39
+ self::$instance = new self;
40
+ }
41
+ return self::$instance;
42
+ }
43
+
44
+ /**
45
+ * __construct
46
+ */
47
+ public function __construct() {
48
+
49
+ if ( ! class_exists( 'WooCommerce') ) {
50
+ return;
51
+ }
52
+
53
+ add_filter( 'customize_nav_menu_available_item_types', [ $this, 'register_customize_nav_menu_item_types'] );
54
+ add_filter( 'customize_nav_menu_available_items', [ $this, 'register_customize_nav_menu_items' ], 11, 4 );
55
+ add_action( 'admin_head-nav-menus.php', [ $this, 'add_nav_menu_meta_boxes' ] );
56
+ }
57
+
58
+ /**
59
+ * Register customize new nav menu item types.
60
+ *
61
+ * @param array $item_types Menu item types.
62
+ * @return array
63
+ */
64
+ public function register_customize_nav_menu_item_types( $item_types ) {
65
+ $item_types[] = array(
66
+ 'title' => __( 'WooCommerce Attributes', 'auxin-elements' ),
67
+ 'type_label' => __( 'WooCommerce Attributes', 'auxin-elements' ),
68
+ 'type' => 'aux_woocommerce_attribute',
69
+ 'object' => 'aux_woocommerce_attribute',
70
+ );
71
+
72
+ return $item_types;
73
+ }
74
+
75
+
76
+ /**
77
+ * Register woocommerce attributes to customize nav menu items.
78
+ *
79
+ * @param array $items List of nav menu items.
80
+ * @param string $type Nav menu type.
81
+ * @param string $object Nav menu object.
82
+ * @param integer $page Page number.
83
+ * @return array
84
+ */
85
+ public function register_customize_nav_menu_items( $items = array(), $type = '', $object = '', $page = 0 ) {
86
+ if ( 'aux_woocommerce_attribute' !== $object ) {
87
+ return $items;
88
+ }
89
+
90
+ // Don't allow pagination since all items are loaded at once.
91
+ if ( 0 < $page ) {
92
+ return $items;
93
+ }
94
+
95
+ $taxonomies = [];
96
+ $attr_tax = wc_get_attribute_taxonomies();
97
+
98
+ foreach( $attr_tax as $tax ) {
99
+ $taxonomies[ $tax->attribute_name ] = $tax->attribute_label;
100
+ }
101
+
102
+ foreach ( $taxonomies as $slug => $label ) {
103
+ $terms = get_terms( 'pa_' . $slug, array(
104
+ 'hide_empty' => false,
105
+ ) );
106
+
107
+ foreach ( $terms as $term ) {
108
+ $items[] = array(
109
+ 'id' => $term->slug,
110
+ 'title' => $term->name,
111
+ 'type_label' => __( 'Attribute', 'auxin-elements' ),
112
+ 'url' => esc_url( get_permalink( woocommerce_get_page_id( 'shop' ) ) . '?filter_' . $slug . '=' . $term->slug ),
113
+ );
114
+ }
115
+ }
116
+
117
+ return $items;
118
+ }
119
+
120
+ public function add_nav_menu_meta_boxes() {
121
+ add_meta_box( 'aux_woocommerce_attribute_nav_link', __( 'WooCommerce attributes', 'auxin-elements' ), [ $this, 'woocommerce_attr_nav_menu_links' ], 'nav-menus', 'side', 'low' );
122
+ }
123
+
124
+ public function woocommerce_attr_nav_menu_links() {
125
+
126
+ $taxonomies = [];
127
+ $attr_tax = wc_get_attribute_taxonomies();
128
+
129
+ foreach( $attr_tax as $tax ) {
130
+ $taxonomies[ $tax->attribute_name ] = $tax->attribute_label;
131
+ }
132
+
133
+ ?>
134
+ <div id="posttype-woocommerce-attr" class="posttypediv">
135
+ <div id="tabs-panel-woocommerce-attr" class="tabs-panel tabs-panel-active">
136
+ <ul id="woocommerce-attr-checklist" class="categorychecklist form-no-clear">
137
+ <?php
138
+ $i = -1;
139
+ foreach ( $taxonomies as $slug => $label ) :
140
+ $terms = get_terms( 'pa_' . $slug, array(
141
+ 'hide_empty' => false,
142
+ ) );
143
+ foreach ( $terms as $term ) {
144
+ ?>
145
+ <li>
146
+ <label class="menu-item-title">
147
+ <input type="checkbox" class="menu-item-checkbox" name="menu-item[<?php echo esc_attr( $i ); ?>][menu-item-object-id]" value="<?php echo esc_attr( $i ); ?>" /> <?php echo esc_html( $term->name ); ?>
148
+ </label>
149
+ <input type="hidden" class="menu-item-type" name="menu-item[<?php echo esc_attr( $i ); ?>][menu-item-type]" value="custom" />
150
+ <input type="hidden" class="menu-item-title" name="menu-item[<?php echo esc_attr( $i ); ?>][menu-item-title]" value="<?php echo esc_attr( $term->name ); ?>" />
151
+ <input type="hidden" class="menu-item-url" name="menu-item[<?php echo esc_attr( $i ); ?>][menu-item-url]" value="<?php echo esc_url( get_permalink( woocommerce_get_page_id( 'shop' ) ) . '?filter_' . $slug . '=' . $term->slug ); ?>" />
152
+ <input type="hidden" class="menu-item-classes" name="menu-item[<?php echo esc_attr( $i ); ?>][menu-item-classes]" />
153
+ </li>
154
+ <?php
155
+ }
156
+ $i--;
157
+ endforeach;
158
+ ?>
159
+ </ul>
160
+ </div>
161
+ <p class="button-controls">
162
+ <span class="list-controls">
163
+ <a href="<?php echo esc_url( admin_url( 'nav-menus.php?page-tab=all&selectall=1#posttype-woocommerce-attr' ) ); ?>" class="select-all"><?php esc_html_e( 'Select all', 'woocommerce' ); ?></a>
164
+ </span>
165
+ <span class="add-to-menu">
166
+ <button type="submit" class="button-secondary submit-add-to-menu right" value="<?php esc_attr_e( 'Add to menu', 'woocommerce' ); ?>" name="add-post-type-menu-item" id="submit-posttype-woocommerce-attr"><?php esc_html_e( 'Add to menu', 'woocommerce' ); ?></button>
167
+ <span class="spinner"></span>
168
+ </span>
169
+ </p>
170
+ </div>
171
+ <?php
172
+ }
173
+ }
174
+ ?>
includes/classes/class-auxin-demo-importer.php CHANGED
@@ -510,6 +510,9 @@ class Auxin_Demo_Importer {
510
  if( strpos( $option, 'page_id' ) !== false ) {
511
  $value = $this->get_meta_post_id( 'auxin_import_post', $value );
512
  }
 
 
 
513
  update_option( $option, maybe_unserialize( $value ) );
514
  }
515
  }
@@ -1136,6 +1139,29 @@ class Auxin_Demo_Importer {
1136
  }
1137
  }
1138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1139
  update_post_meta( get_the_ID(), '_elementor_data', wp_slash( $elementor_data ) );
1140
 
1141
  $page_header_use_legacy = get_post_meta( get_the_ID(), 'page_header_use_legacy', true );
510
  if( strpos( $option, 'page_id' ) !== false ) {
511
  $value = $this->get_meta_post_id( 'auxin_import_post', $value );
512
  }
513
+ if ( $option == 'elementor_active_kit' ) {
514
+ $value = $this->get_meta_post_id( 'auxin_import_post', $value );
515
+ }
516
  update_option( $option, maybe_unserialize( $value ) );
517
  }
518
  }
1139
  }
1140
  }
1141
 
1142
+ // check elementor tags for page url
1143
+ preg_match_all( '/\[elementor-tag.+?\]/', $elementor_data, $elementor_tags, PREG_SET_ORDER );
1144
+ if ( ! empty( $elementor_tags ) ) {
1145
+ foreach( $elementor_tags as $key => $tag ) {
1146
+ // tag is page url
1147
+ if ( strpos( $tag[0], 'aux-pages-url' ) ) {
1148
+ preg_match_all( '/settings=\\\"(.+)?\\\"/', $tag[0], $key_values, PREG_SET_ORDER );
1149
+ if ( ! empty( $key_values ) ) {
1150
+ foreach ( $key_values as $tag_key => $key_value ) {
1151
+ $old_key_value = urldecode( $key_value[1] );
1152
+ $page_id = str_replace( '{"key":"', '', $old_key_value );
1153
+ $page_id = str_replace( '"}', '', $page_id );
1154
+
1155
+ $new_page_id = auxin_get_transient( "aux-page-{$page_id}-changs-to" );
1156
+ $new_key_value = urlencode('{"key":"' . $new_page_id . '"}');
1157
+ $new_tag = str_replace( $key_value[1], $new_key_value, $tag[0] );
1158
+ $elementor_data = str_replace( $tag[0], $new_tag, $elementor_data );
1159
+ }
1160
+ }
1161
+ }
1162
+ }
1163
+ }
1164
+
1165
  update_post_meta( get_the_ID(), '_elementor_data', wp_slash( $elementor_data ) );
1166
 
1167
  $page_header_use_legacy = get_post_meta( get_the_ID(), 'page_header_use_legacy', true );
includes/define.php CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
12
  }
13
 
14
 
15
- define( 'AUXELS_VERSION' , '2.6.17' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
12
  }
13
 
14
 
15
+ define( 'AUXELS_VERSION' , '2.6.19' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
includes/elementor/modules/common.php CHANGED
@@ -309,6 +309,7 @@ selector .child-element{ margin: 10px; }
309
  'aux-fade-in-right' => 'Fade In Right',
310
  'aux-fade-in-right-1' => 'Fade In Right 1',
311
  'aux-fade-in-right-2' => 'Fade In Right 2',
 
312
 
313
  // Slide Animation
314
  'aux-slide-from-right' => 'Slide From Right',
@@ -335,6 +336,7 @@ selector .child-element{ margin: 10px; }
335
  'aux-rotate-in-up-right' => 'Rotate In Up Right',
336
  'aux-rotate-in-up-right-1' => 'Rotate In Up Right 1',
337
  'aux-rotate-in-up-right-2' => 'Rotate In Up Right 2',
 
338
 
339
  'aux-zoom-in' => 'Zoom In',
340
  'aux-zoom-in-1' => 'Zoom In 1',
@@ -348,6 +350,7 @@ selector .child-element{ margin: 10px; }
348
  'aux-scale-down' => 'Scale Down',
349
  'aux-scale-down-1' => 'Scale Down 1',
350
  'aux-scale-down-2' => 'Scale Down 2',
 
351
 
352
  'aux-flip-in-down' => 'Flip In Down',
353
  'aux-flip-in-down-1' => 'Flip In Down 1',
@@ -378,9 +381,7 @@ selector .child-element{ margin: 10px; }
378
  // Specials
379
  'aux-shake' => 'Shake',
380
  'aux-bounce-in' => 'Bounce In',
381
- 'aux-jack-in-box' => 'Jack In the Box',
382
-
383
-
384
  ),
385
  'default' => '',
386
  'prefix_class' => 'aux-appear-watch-animation ',
@@ -388,6 +389,98 @@ selector .child-element{ margin: 10px; }
388
  )
389
  );
390
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
391
 
392
  $widget->add_control(
393
  'aux_animation_duration',
309
  'aux-fade-in-right' => 'Fade In Right',
310
  'aux-fade-in-right-1' => 'Fade In Right 1',
311
  'aux-fade-in-right-2' => 'Fade In Right 2',
312
+ 'aux-fade-in-custom' => 'Fade In - Custom',
313
 
314
  // Slide Animation
315
  'aux-slide-from-right' => 'Slide From Right',
336
  'aux-rotate-in-up-right' => 'Rotate In Up Right',
337
  'aux-rotate-in-up-right-1' => 'Rotate In Up Right 1',
338
  'aux-rotate-in-up-right-2' => 'Rotate In Up Right 2',
339
+ 'aux-rotate-custom' => 'Rotate In - Custom',
340
 
341
  'aux-zoom-in' => 'Zoom In',
342
  'aux-zoom-in-1' => 'Zoom In 1',
350
  'aux-scale-down' => 'Scale Down',
351
  'aux-scale-down-1' => 'Scale Down 1',
352
  'aux-scale-down-2' => 'Scale Down 2',
353
+ 'aux-scale-custom' => 'Scale - Custom',
354
 
355
  'aux-flip-in-down' => 'Flip In Down',
356
  'aux-flip-in-down-1' => 'Flip In Down 1',
381
  // Specials
382
  'aux-shake' => 'Shake',
383
  'aux-bounce-in' => 'Bounce In',
384
+ 'aux-jack-in-box' => 'Jack In the Box'
 
 
385
  ),
386
  'default' => '',
387
  'prefix_class' => 'aux-appear-watch-animation ',
389
  )
390
  );
391
 
392
+ $widget->add_control(
393
+ 'aux_fade_in_custom_x',
394
+ array(
395
+ 'label' => __( 'Fade In For X', 'auxin-elements' ) . ' (px)',
396
+ 'type' => Controls_Manager::NUMBER,
397
+ 'default' => '',
398
+ 'min' => -500,
399
+ 'max' => 500,
400
+ 'step' => 25,
401
+ 'default' => 50,
402
+ 'selectors' => array(
403
+ '{{WRAPPER}}.aux-appear-watch-animation' => '--aux-anim-fade-in-from-x:{{SIZE}}px;'
404
+ ),
405
+ 'condition' => array(
406
+ 'aux_animation_name' => 'aux-fade-in-custom'
407
+ )
408
+ )
409
+ );
410
+
411
+ $widget->add_control(
412
+ 'aux_fade_in_custom_y',
413
+ array(
414
+ 'label' => __( 'Fade In For Y', 'auxin-elements' ) . ' (px)',
415
+ 'type' => Controls_Manager::NUMBER,
416
+ 'default' => '',
417
+ 'min' => -500,
418
+ 'max' => 500,
419
+ 'step' => 25,
420
+ 'default' => 50,
421
+ 'selectors' => array(
422
+ '{{WRAPPER}}.aux-appear-watch-animation' => '--aux-anim-fade-in-from-y:{{SIZE}}px;'
423
+ ),
424
+ 'condition' => array(
425
+ 'aux_animation_name' => 'aux-fade-in-custom'
426
+ )
427
+ )
428
+ );
429
+
430
+ $widget->add_control(
431
+ 'aux_scale_custom',
432
+ array(
433
+ 'label' => __( 'Scale', 'auxin-elements' ) . '',
434
+ 'type' => Controls_Manager::NUMBER,
435
+ 'default' => '',
436
+ 'min' => 0.1,
437
+ 'max' => 3,
438
+ 'step' => 0.1,
439
+ 'selectors' => array(
440
+ '{{WRAPPER}}.aux-appear-watch-animation' => '--aux-scale-custom:{{SIZE}};'
441
+ ),
442
+ 'condition' => array(
443
+ 'aux_animation_name' => 'aux-scale-custom'
444
+ )
445
+ )
446
+ );
447
+
448
+ $widget->add_control(
449
+ 'aux_rotate_custom_deg',
450
+ array(
451
+ 'label' => __( 'Rotate Degree', 'auxin-elements' ) . '',
452
+ 'type' => Controls_Manager::NUMBER,
453
+ 'default' => '',
454
+ 'min' => -360,
455
+ 'max' => 360,
456
+ 'step' => 10,
457
+ 'selectors' => array(
458
+ '{{WRAPPER}}.aux-appear-watch-animation' => '--aux-anim-rotate-deg:{{SIZE}}deg;'
459
+ ),
460
+ 'condition' => array(
461
+ 'aux_animation_name' => 'aux-rotate-custom'
462
+ )
463
+ )
464
+ );
465
+
466
+ $widget->add_control(
467
+ 'aux_rotate_custom_origin',
468
+ array(
469
+ 'label' => __( 'Rotate Origin', 'auxin-elements' ) . '',
470
+ 'type' => Controls_Manager::SELECT,
471
+ 'default' => 'left bottom',
472
+ 'options' => [
473
+ 'left bottom' => __( 'Left Bottom', 'auxin-elements' ),
474
+ 'right bottom' => __( 'Right Bottom', 'auxin-elements' ),
475
+ ],
476
+ 'selectors' => array(
477
+ '{{WRAPPER}}.aux-appear-watch-animation' => '--aux-anim-rotate-origin:{{VALUE}};'
478
+ ),
479
+ 'condition' => array(
480
+ 'aux_animation_name' => 'aux-rotate-custom'
481
+ )
482
+ )
483
+ );
484
 
485
  $widget->add_control(
486
  'aux_animation_duration',
includes/elementor/widgets/image.php CHANGED
@@ -700,20 +700,18 @@ class Image extends Widget_Base {
700
 
701
  $settings = $this->get_settings_for_display();
702
 
703
- $link_target = $settings['link']['is_external'] ? '_blank' : '_self';
704
-
705
  $args = array(
706
  'image_html' => Group_Control_Image_Size::get_attachment_image_html( $settings, 'image' ),
707
 
708
- 'attach_id' => $settings['image']['id'],
709
  'size' => $settings['image_size'],
710
- 'width' => $settings['image_custom_dimension']['width'],
711
- 'height' => $settings['image_custom_dimension']['height'],
712
- 'link' => $settings['link']['url'],
713
- 'nofollow' => $settings['link']['nofollow'],
714
- 'target' => $link_target,
715
 
716
- 'attach_id_hover' => $settings['hover_image']['id'],
717
 
718
  'display_ribbon' => $settings['display_ribbon'],
719
  'ribbon_text' => $settings['ribbon_text'],
700
 
701
  $settings = $this->get_settings_for_display();
702
 
 
 
703
  $args = array(
704
  'image_html' => Group_Control_Image_Size::get_attachment_image_html( $settings, 'image' ),
705
 
706
+ 'attach_id' => auxin_get_array_value( $settings['image'], 'id' ),
707
  'size' => $settings['image_size'],
708
+ 'width' => auxin_get_array_value( $settings['image_custom_dimension'], 'width' ),
709
+ 'height' => auxin_get_array_value( $settings['image_custom_dimension'], 'height' ),
710
+ 'link' => auxin_get_array_value( $settings['link'], 'url' ),
711
+ 'nofollow' => auxin_get_array_value( $settings['link'], 'nofollow' ),
712
+ 'target' => auxin_get_array_value( $settings['link'], 'is_external', false ) ? '_blank' : '_self',
713
 
714
+ 'attach_id_hover' => auxin_get_array_value( $settings['hover_image'], 'id' ),
715
 
716
  'display_ribbon' => $settings['display_ribbon'],
717
  'ribbon_text' => $settings['ribbon_text'],
includes/elementor/widgets/text.php CHANGED
@@ -1623,12 +1623,10 @@ class Text extends Widget_Base {
1623
 
1624
  $btn_icon_value = ! empty( $settings['aux_text_btn_icon']['value'] ) ? $settings['aux_text_btn_icon']['value'] : ( ! empty( $settings['btn_icon'] ) ? $settings['btn_icon'] : '' ) ;
1625
 
1626
- $btn_target = $settings['btn_link']['is_external'] ? '_blank' : '_self';
1627
-
1628
  $args = array(
1629
  'title' => $settings['title'],
1630
  'subtitle' => $settings['subtitle'],
1631
- 'title_link' => $settings['title_link']['url'],
1632
  'content' => $settings['content'],
1633
 
1634
  'display_button' => $settings['display_button'],
@@ -1639,20 +1637,19 @@ class Text extends Widget_Base {
1639
  'btn_icon' => $btn_icon_value,
1640
  'btn_icon_align' => $settings['btn_icon_align'],
1641
  'btn_color_name' => $settings['btn_color_name'],
1642
- 'btn_link' => $settings['btn_link']['url'],
1643
- 'btn_nofollow' => $settings['btn_link']['nofollow'],
1644
- 'btn_target' => $btn_target,
1645
-
1646
 
1647
  'icon_or_image' => $settings['icon_or_image'],
1648
  'icon' => $main_icon,
1649
  'icon_color' => $settings['icon_color'],
1650
  'icon_bg_color' => $settings['icon_bg_color'],
1651
  'icon_shape' => $settings['icon_shape'],
1652
- 'image' => $settings['image']['id'],
1653
  'size' => $settings['image_size'],
1654
- 'width' => $settings['image_custom_dimension']['width'],
1655
- 'height' => $settings['image_custom_dimension']['height'],
1656
  'preloadable' => $settings['preloadable'],
1657
  'preload_preview' => $settings['preload_preview'],
1658
  'preload_bgcolor' => $settings['preload_bgcolor'],
1623
 
1624
  $btn_icon_value = ! empty( $settings['aux_text_btn_icon']['value'] ) ? $settings['aux_text_btn_icon']['value'] : ( ! empty( $settings['btn_icon'] ) ? $settings['btn_icon'] : '' ) ;
1625
 
 
 
1626
  $args = array(
1627
  'title' => $settings['title'],
1628
  'subtitle' => $settings['subtitle'],
1629
+ 'title_link' => auxin_get_array_value( $settings['title_link'], 'url' ),
1630
  'content' => $settings['content'],
1631
 
1632
  'display_button' => $settings['display_button'],
1637
  'btn_icon' => $btn_icon_value,
1638
  'btn_icon_align' => $settings['btn_icon_align'],
1639
  'btn_color_name' => $settings['btn_color_name'],
1640
+ 'btn_link' => auxin_get_array_value( $settings['btn_link'], 'url' ),
1641
+ 'btn_nofollow' => auxin_get_array_value( $settings['btn_link'], 'nofollow' ),
1642
+ 'btn_target' => auxin_get_array_value( $settings['btn_link'], 'is_external', false ) ? '_blank' : '_self',
 
1643
 
1644
  'icon_or_image' => $settings['icon_or_image'],
1645
  'icon' => $main_icon,
1646
  'icon_color' => $settings['icon_color'],
1647
  'icon_bg_color' => $settings['icon_bg_color'],
1648
  'icon_shape' => $settings['icon_shape'],
1649
+ 'image' => auxin_get_array_value( $settings['image'], 'id' ),
1650
  'size' => $settings['image_size'],
1651
+ 'width' => auxin_get_array_value( $settings['image_custom_dimension'], 'width' ),
1652
+ 'height' => auxin_get_array_value( $settings['image_custom_dimension'], 'height' ),
1653
  'preloadable' => $settings['preloadable'],
1654
  'preload_preview' => $settings['preload_preview'],
1655
  'preload_bgcolor' => $settings['preload_bgcolor'],
includes/elementor/widgets/theme-elements/logo.php CHANGED
@@ -204,7 +204,19 @@ class Logo extends Widget_Base {
204
  ),
205
  'show_label' => false,
206
  )
207
- );
 
 
 
 
 
 
 
 
 
 
 
 
208
 
209
  $this->end_controls_section();
210
 
@@ -690,6 +702,9 @@ class Logo extends Widget_Base {
690
 
691
  $link_attr = auxin_make_html_attributes( $link_attr );
692
 
 
 
 
693
  if ( $custom_logo_id ) {
694
 
695
  $logo_image_markup = '';
@@ -713,9 +728,25 @@ class Logo extends Widget_Base {
713
  );
714
 
715
  $logo_markup = '<a ' . $link_attr . ' >' . $logo_image_markup . '</a>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
716
  }
717
 
718
- $output .= '<div class="aux-widget-logo">';
719
  $output .= $logo_markup;
720
  $output .= '<section class="aux-logo-text">';
721
  $output .= '<h3 class="site-title">';
204
  ),
205
  'show_label' => false,
206
  )
207
+ );
208
+
209
+ $this->add_control(
210
+ 'can_scale',
211
+ array(
212
+ 'label' => __( 'Can Scale', 'auxin-elements' ),
213
+ 'type' => Controls_Manager::SWITCHER,
214
+ 'label_on' => __( 'On', 'auxin-elements' ),
215
+ 'label_off' => __( 'Off', 'auxin-elements' ),
216
+ 'return_value' => 'yes',
217
+ 'default' => 'off',
218
+ )
219
+ );
220
 
221
  $this->end_controls_section();
222
 
702
 
703
  $link_attr = auxin_make_html_attributes( $link_attr );
704
 
705
+ $wrap_classes = [];
706
+ $wrap_classes[] = $settings['can_scale'] == 'yes' ? 'aux-scale' : '';
707
+
708
  if ( $custom_logo_id ) {
709
 
710
  $logo_image_markup = '';
728
  );
729
 
730
  $logo_markup = '<a ' . $link_attr . ' >' . $logo_image_markup . '</a>';
731
+
732
+ // add secondary sticky logo
733
+ if ( $secondary_logo_id ) {
734
+ $secondary_logo_image_markup = auxin_get_the_responsive_attachment( $secondary_logo_id,
735
+ array(
736
+ 'quality' => 100,
737
+ 'size' => $image_size,
738
+ 'crop' => true,
739
+ 'add_hw' => true,
740
+ 'upscale' => false,
741
+ 'preloadable' => false
742
+ )
743
+ );
744
+ $logo_2_link_attr = \str_replace( 'aux-logo-anchor', 'aux-logo-anchor aux-logo-sticky aux-logo-hidden', $link_attr );
745
+ $logo_markup .= '<a ' . $logo_2_link_attr . ' >' . $secondary_logo_image_markup . '</a>';
746
+ }
747
  }
748
 
749
+ $output .= '<div class="aux-widget-logo ' . implode(' ', $wrap_classes ) . '">';
750
  $output .= $logo_markup;
751
  $output .= '<section class="aux-logo-text">';
752
  $output .= '<h3 class="site-title">';
includes/general-functions.php CHANGED
@@ -2112,11 +2112,11 @@ function auxin_get_header_template(){
2112
  */
2113
  function auxin_get_footer_template(){
2114
  global $post;
2115
-
2116
  $template_ID = auxin_get_option( 'site_elementor_footer_template', '' );
2117
  $template_ID = ( ! empty( auxin_get_post_meta( $post, 'page_elementor_footer_template' ) ) && auxin_get_post_meta($post , 'page_footer_use_legacy' ) !== 'default' ) ?
2118
  auxin_get_post_meta( $post, 'page_elementor_footer_template' ) : $template_ID ;
2119
-
2120
  $attrs = [
2121
  'class' => ['aux-elementor-footer'],
2122
  'itemscope' => 'itemscope',
@@ -2486,7 +2486,7 @@ function auxin_list_pages() {
2486
  $all_pages = get_pages();
2487
  $list = array( '' => __( 'Select Page', 'auxin-elements' ) );
2488
  foreach( $all_pages as $page ) {
2489
- $list[ $page->ID ] = $page->post_title ;
2490
  }
2491
 
2492
  return $list;
@@ -2494,14 +2494,26 @@ function auxin_list_pages() {
2494
 
2495
  /**
2496
  * Get List of available image sizes
2497
- *
2498
  * @return array
2499
  */
2500
  function auxin_get_available_image_sizes() {
2501
-
2502
  $image_sizes = get_intermediate_image_sizes();
2503
  $auto_size = array( 'auto' => 'auto' );
2504
 
2505
  return array_merge( $image_sizes, $auto_size );
2506
 
 
 
 
 
 
 
 
 
 
 
 
 
2507
  }
2112
  */
2113
  function auxin_get_footer_template(){
2114
  global $post;
2115
+
2116
  $template_ID = auxin_get_option( 'site_elementor_footer_template', '' );
2117
  $template_ID = ( ! empty( auxin_get_post_meta( $post, 'page_elementor_footer_template' ) ) && auxin_get_post_meta($post , 'page_footer_use_legacy' ) !== 'default' ) ?
2118
  auxin_get_post_meta( $post, 'page_elementor_footer_template' ) : $template_ID ;
2119
+
2120
  $attrs = [
2121
  'class' => ['aux-elementor-footer'],
2122
  'itemscope' => 'itemscope',
2486
  $all_pages = get_pages();
2487
  $list = array( '' => __( 'Select Page', 'auxin-elements' ) );
2488
  foreach( $all_pages as $page ) {
2489
+ $list[ $page->ID ] = $page->post_title ;
2490
  }
2491
 
2492
  return $list;
2494
 
2495
  /**
2496
  * Get List of available image sizes
2497
+ *
2498
  * @return array
2499
  */
2500
  function auxin_get_available_image_sizes() {
2501
+
2502
  $image_sizes = get_intermediate_image_sizes();
2503
  $auto_size = array( 'auto' => 'auto' );
2504
 
2505
  return array_merge( $image_sizes, $auto_size );
2506
 
2507
+ }
2508
+
2509
+ /**
2510
+ * Retrives the value of a key in array if key exists
2511
+ *
2512
+ * @param array $array
2513
+ * @param string $key
2514
+ * @param string $default
2515
+ * @return void
2516
+ */
2517
+ function auxin_get_array_value( $array, $key, $default = '' ){
2518
+ return isset( $array[ $key ] ) ? $array[ $key ] : $default;
2519
  }
includes/general-hooks.php CHANGED
@@ -3352,6 +3352,22 @@ function auxels_enable_woocommerce_ajax_add_to_cart( $args ){
3352
 
3353
  add_filter( 'woocommerce_loop_add_to_cart_args', 'auxels_enable_woocommerce_ajax_add_to_cart', 10 );
3354
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3355
  /**
3356
  * Override inner body sections hooks for replace header&footer
3357
  *
3352
 
3353
  add_filter( 'woocommerce_loop_add_to_cart_args', 'auxels_enable_woocommerce_ajax_add_to_cart', 10 );
3354
 
3355
+ /*-----------------------------------------------------------------------------------*/
3356
+ /* Change Products Title Dom
3357
+ /*-----------------------------------------------------------------------------------*/
3358
+ add_action( 'init', 'auxin_remove_default_woocommerce_product_title' );
3359
+
3360
+ function auxin_remove_default_woocommerce_product_title() {
3361
+ remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );
3362
+ add_action( 'woocommerce_shop_loop_item_title', 'auxin_woocommerce_template_loop_product_title', 10 );
3363
+ }
3364
+
3365
+ function auxin_woocommerce_template_loop_product_title() {
3366
+ global $product;
3367
+ $dom = '<a href="' . esc_url( get_permalink( $product->get_id() ) ) . '"><h2 class="' . esc_attr( apply_filters( 'woocommerce_product_loop_title_classes', 'woocommerce-loop-product__title' ) ) . '">' . get_the_title() . '</h2></a>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
3368
+ echo apply_filters( 'auxin_woocommerce_template_loop_product_title', $dom );
3369
+ }
3370
+
3371
  /**
3372
  * Override inner body sections hooks for replace header&footer
3373
  *
includes/index.php CHANGED
@@ -10,6 +10,7 @@ include_once( 'general-shortcodes.php' );
10
 
11
  Auxin_WhiteLabel::get_instance();
12
  Auxin_Widget_Shortcode_Map::get_instance();
 
13
 
14
  Auxin_Import::get_instance();
15
  if ( wp_doing_ajax() ) {
10
 
11
  Auxin_WhiteLabel::get_instance();
12
  Auxin_Widget_Shortcode_Map::get_instance();
13
+ Auxels_WC_Attribute_Nav_Menu::get_instance();
14
 
15
  Auxin_Import::get_instance();
16
  if ( wp_doing_ajax() ) {
languages/auxin-elements-fa_IR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Auxin Essential Elements\n"
4
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
5
- "POT-Creation-Date: 2020-09-19 11:02:11+00:00\n"
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -1316,7 +1316,7 @@ msgid "Center"
1316
  msgstr "وسط"
1317
 
1318
  #: admin/includes/metaboxes/metabox-fields-general-header.php:603
1319
- #: includes/elementor/modules/common.php:657
1320
  #: includes/elementor/widgets/button.php:234
1321
  #: includes/elementor/widgets/button.php:378
1322
  #: includes/elementor/widgets/custom-list.php:473
@@ -1488,8 +1488,8 @@ msgid "Dropdown Action On"
1488
  msgstr ""
1489
 
1490
  #: admin/includes/metaboxes/metabox-fields-general-header.php:841
1491
- #: includes/elementor/modules/common.php:489
1492
- #: includes/elementor/modules/common.php:545
1493
  #: includes/elementor/modules/dynamic-tags/current-date-time.php:37
1494
  #: includes/elementor/modules/dynamic-tags/current-date-time.php:55
1495
  #: includes/elementor/modules/dynamic-tags/post-date.php:49
@@ -1591,7 +1591,7 @@ msgstr "پیش فرض"
1591
  #: includes/elementor/widgets/text.php:1512
1592
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:516
1593
  #: includes/elementor/widgets/theme-elements/copyright.php:212
1594
- #: includes/elementor/widgets/theme-elements/logo.php:327
1595
  #: includes/elementor/widgets/theme-elements/menu.php:436
1596
  #: includes/elementor/widgets/theme-elements/menu.php:729
1597
  #: includes/elementor/widgets/theme-elements/menu.php:875
@@ -2024,6 +2024,29 @@ msgstr "این فایل شبیه یک فایل WXR نیست، شماره نسخ
2024
  msgid "Include theme options"
2025
  msgstr "شمال شدن تنظیمات پوسته"
2026
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2027
  #: includes/classes/class-auxin-admin-dashboard.php:38
2028
  #, fuzzy
2029
  msgid "%s Status"
@@ -2082,7 +2105,7 @@ msgid "Importing Media"
2082
  msgstr ""
2083
 
2084
  #: includes/classes/class-auxin-demo-importer.php:293
2085
- #: includes/classes/class-auxin-demo-importer.php:1224
2086
  msgid "Importing Users"
2087
  msgstr ""
2088
 
@@ -2097,7 +2120,7 @@ msgid "Importing Options"
2097
  msgstr "تنظیمات طراحی"
2098
 
2099
  #: includes/classes/class-auxin-demo-importer.php:339
2100
- #: includes/classes/class-auxin-demo-importer.php:545
2101
  msgid "Importing Menus"
2102
  msgstr ""
2103
 
@@ -2109,15 +2132,15 @@ msgstr ""
2109
  msgid "Retrieve Body Fails"
2110
  msgstr ""
2111
 
2112
- #: includes/classes/class-auxin-demo-importer.php:611
2113
  msgid "Importing Sliders"
2114
  msgstr ""
2115
 
2116
- #: includes/classes/class-auxin-demo-importer.php:1287
2117
  msgid "Preparing Site ..."
2118
  msgstr ""
2119
 
2120
- #: includes/classes/class-auxin-demo-importer.php:1302
2121
  msgid "All steps are successful"
2122
  msgstr ""
2123
 
@@ -2326,7 +2349,7 @@ msgstr ""
2326
  #: includes/elementor/widgets/heading-modern.php:309
2327
  #: includes/elementor/widgets/heading-modern.php:316
2328
  #: includes/elementor/widgets/heading-modern.php:962
2329
- #: includes/elementor/widgets/theme-elements/logo.php:546
2330
  #: includes/elements/custom-list.php:138
2331
  #, fuzzy
2332
  msgid "Description"
@@ -3087,52 +3110,83 @@ msgid "Animation"
3087
  msgstr "فلش های ناوبری"
3088
 
3089
  #: includes/elementor/modules/common.php:395
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3090
  #: includes/elements/general-element-fields.php:51
3091
  #, fuzzy
3092
  msgid "Duration"
3093
  msgstr "عنوان"
3094
 
3095
- #: includes/elementor/modules/common.php:413
3096
  #: includes/elements/general-element-fields.php:61
3097
  msgid "Delay"
3098
  msgstr ""
3099
 
3100
- #: includes/elementor/modules/common.php:430
3101
  msgid "Easing"
3102
  msgstr ""
3103
 
3104
- #: includes/elementor/modules/common.php:486
3105
  #, fuzzy
3106
  msgid "Repeat Count"
3107
  msgstr "تکرار ویدیو"
3108
 
3109
- #: includes/elementor/modules/common.php:495
3110
  msgid "Infinite"
3111
  msgstr ""
3112
 
3113
- #: includes/elementor/modules/common.php:533
3114
  #, fuzzy
3115
  msgid "Positioning"
3116
  msgstr "موقعیت"
3117
 
3118
- #: includes/elementor/modules/common.php:541
3119
  #, fuzzy
3120
  msgid "Position Type"
3121
  msgstr "موقعیت"
3122
 
3123
- #: includes/elementor/modules/common.php:546
3124
  msgid "Static"
3125
  msgstr ""
3126
 
3127
- #: includes/elementor/modules/common.php:547
3128
  msgid "Relative"
3129
  msgstr ""
3130
 
3131
- #: includes/elementor/modules/common.php:548
3132
  msgid "Absolute"
3133
  msgstr ""
3134
 
3135
- #: includes/elementor/modules/common.php:560
3136
  #: includes/elementor/widgets/modern-button.php:139
3137
  #: includes/elementor/widgets/staff.php:815
3138
  #: includes/elementor/widgets/text.php:363 includes/elements/staff.php:226
@@ -3141,7 +3195,7 @@ msgstr ""
3141
  msgid "Top"
3142
  msgstr "بالا"
3143
 
3144
- #: includes/elementor/modules/common.php:592
3145
  #: includes/elementor/widgets/button.php:242
3146
  #: includes/elementor/widgets/button.php:379
3147
  #: includes/elementor/widgets/custom-list.php:481
@@ -3187,27 +3241,27 @@ msgstr "بالا"
3187
  msgid "Right"
3188
  msgstr "راست"
3189
 
3190
- #: includes/elementor/modules/common.php:625
3191
  #: includes/elementor/widgets/modern-button.php:147
3192
  #: includes/elementor/widgets/staff.php:823 includes/elements/staff.php:234
3193
  msgid "Bottom"
3194
  msgstr ""
3195
 
3196
- #: includes/elementor/modules/common.php:689
3197
  #, fuzzy
3198
  msgid "From Center"
3199
  msgstr "وسط"
3200
 
3201
- #: includes/elementor/modules/common.php:690
3202
  msgid ""
3203
  "Please avoid using \"From Center\" and \"Left\" options at the same time."
3204
  msgstr ""
3205
 
3206
- #: includes/elementor/modules/common.php:746
3207
  msgid "Dimensions (extra)"
3208
  msgstr ""
3209
 
3210
- #: includes/elementor/modules/common.php:754
3211
  #: includes/elementor/widgets/contact-form.php:217
3212
  #: includes/elementor/widgets/contact-form.php:527
3213
  #: includes/elementor/widgets/contact-form.php:747
@@ -3223,32 +3277,32 @@ msgstr ""
3223
  #: includes/elementor/widgets/mailchimp.php:481
3224
  #: includes/elementor/widgets/mailchimp.php:709
3225
  #: includes/elementor/widgets/svg.php:222
3226
- #: includes/elementor/widgets/theme-elements/logo.php:257
3227
- #: includes/elementor/widgets/theme-elements/logo.php:515
3228
- #: includes/elementor/widgets/theme-elements/logo.php:607
3229
  #: includes/elementor/widgets/theme-elements/shopping-cart.php:419
3230
  #, fuzzy
3231
  msgid "Max Width"
3232
  msgstr "عرض"
3233
 
3234
- #: includes/elementor/modules/common.php:786
3235
  #: includes/elementor/widgets/image.php:458
3236
  #: includes/elementor/widgets/svg.php:250
3237
  #, fuzzy
3238
  msgid "Max Height"
3239
  msgstr "ارتفاع نقشه"
3240
 
3241
- #: includes/elementor/modules/common.php:819
3242
  #, fuzzy
3243
  msgid "Min Width"
3244
  msgstr "عرض"
3245
 
3246
- #: includes/elementor/modules/common.php:851
3247
  #, fuzzy
3248
  msgid "Min Height"
3249
  msgstr "ارتفاع"
3250
 
3251
- #: includes/elementor/modules/common.php:884
3252
  #: includes/elementor/widgets/before-after.php:194
3253
  #: includes/elementor/widgets/carousel-navigation.php:254
3254
  #: includes/elementor/widgets/contact-form.php:244
@@ -3271,7 +3325,7 @@ msgstr "ارتفاع"
3271
  msgid "Height"
3272
  msgstr "ارتفاع"
3273
 
3274
- #: includes/elementor/modules/common.php:916
3275
  msgid "Grow in width"
3276
  msgstr ""
3277
 
@@ -3645,7 +3699,7 @@ msgstr "بخش"
3645
  #: includes/elementor/widgets/tabs.php:373
3646
  #: includes/elementor/widgets/text.php:232
3647
  #: includes/elementor/widgets/text.php:680
3648
- #: includes/elementor/widgets/theme-elements/logo.php:454
3649
  #: includes/elementor/widgets/theme-elements/site-title.php:94
3650
  #: includes/elementor/widgets/touch-slider.php:332
3651
  #: includes/elements/about-widget.php:43
@@ -4474,8 +4528,8 @@ msgstr ""
4474
  #: includes/elementor/widgets/tabs.php:480
4475
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:240
4476
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:373
4477
- #: includes/elementor/widgets/theme-elements/logo.php:493
4478
- #: includes/elementor/widgets/theme-elements/logo.php:585
4479
  #: includes/elementor/widgets/theme-elements/menu.php:530
4480
  #: includes/elementor/widgets/theme-elements/menu.php:969
4481
  #: includes/elementor/widgets/theme-elements/menu.php:1328
@@ -4516,7 +4570,7 @@ msgstr ""
4516
  #: includes/elementor/widgets/tabs.php:493
4517
  #: includes/elementor/widgets/text.php:1468
4518
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:463
4519
- #: includes/elementor/widgets/theme-elements/logo.php:390
4520
  #: includes/elementor/widgets/theme-elements/menu.php:421
4521
  #: includes/elementor/widgets/theme-elements/menu.php:498
4522
  #: includes/elementor/widgets/theme-elements/menu.php:705
@@ -4608,7 +4662,7 @@ msgstr "کادربندی شده"
4608
  #: includes/elementor/widgets/text.php:1484
4609
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:490
4610
  #: includes/elementor/widgets/theme-elements/copyright.php:175
4611
- #: includes/elementor/widgets/theme-elements/logo.php:293
4612
  #: includes/elementor/widgets/theme-elements/menu.php:359
4613
  #: includes/elementor/widgets/theme-elements/menu.php:680
4614
  #: includes/elementor/widgets/theme-elements/menu.php:796
@@ -4858,8 +4912,8 @@ msgstr "تیتر گذاری"
4858
  #: includes/elementor/widgets/theme-elements/copyright.php:182
4859
  #: includes/elementor/widgets/theme-elements/copyright.php:219
4860
  #: includes/elementor/widgets/theme-elements/current-time.php:172
4861
- #: includes/elementor/widgets/theme-elements/logo.php:462
4862
- #: includes/elementor/widgets/theme-elements/logo.php:554
4863
  #: includes/elementor/widgets/theme-elements/menu.php:366
4864
  #: includes/elementor/widgets/theme-elements/menu.php:443
4865
  #: includes/elementor/widgets/theme-elements/menu.php:556
@@ -5031,7 +5085,8 @@ msgstr "فایل صوتی را به صورت خودکار پخش کن."
5031
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:128
5032
  #: includes/elementor/widgets/theme-elements/copyright.php:115
5033
  #: includes/elementor/widgets/theme-elements/copyright.php:128
5034
- #: includes/elementor/widgets/theme-elements/logo.php:415
 
5035
  #: includes/elementor/widgets/theme-elements/menu.php:175
5036
  #: includes/elementor/widgets/theme-elements/menu.php:190
5037
  #: includes/elementor/widgets/theme-elements/modern-search.php:157
@@ -5177,7 +5232,8 @@ msgstr ""
5177
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:129
5178
  #: includes/elementor/widgets/theme-elements/copyright.php:116
5179
  #: includes/elementor/widgets/theme-elements/copyright.php:129
5180
- #: includes/elementor/widgets/theme-elements/logo.php:416
 
5181
  #: includes/elementor/widgets/theme-elements/menu.php:176
5182
  #: includes/elementor/widgets/theme-elements/menu.php:191
5183
  #: includes/elementor/widgets/theme-elements/modern-search.php:158
@@ -5309,7 +5365,7 @@ msgstr ""
5309
  #: includes/elementor/widgets/svg.php:162
5310
  #: includes/elementor/widgets/testimonial.php:284
5311
  #: includes/elementor/widgets/testimonial.php:855
5312
- #: includes/elementor/widgets/theme-elements/logo.php:222
5313
  #: includes/elementor/widgets/theme-elements/search.php:289
5314
  #: includes/elementor/widgets/video.php:191
5315
  #: includes/elements/before-after.php:115 includes/elements/image.php:109
@@ -5609,8 +5665,8 @@ msgstr ""
5609
  #: includes/elementor/widgets/text.php:1263
5610
  #: includes/elementor/widgets/text.php:1301
5611
  #: includes/elementor/widgets/theme-elements/current-time.php:184
5612
- #: includes/elementor/widgets/theme-elements/logo.php:507
5613
- #: includes/elementor/widgets/theme-elements/logo.php:599
5614
  #: includes/elementor/widgets/theme-elements/site-title.php:348
5615
  #: includes/elementor/widgets/theme-elements/site-title.php:414
5616
  #: includes/elementor/widgets/theme-elements/site-title.php:480
@@ -5713,8 +5769,8 @@ msgstr ""
5713
  #: includes/elementor/widgets/carousel-navigation.php:416
5714
  #: includes/elementor/widgets/custom-list.php:785
5715
  #: includes/elementor/widgets/custom-list.php:841
5716
- #: includes/elementor/widgets/theme-elements/logo.php:473
5717
- #: includes/elementor/widgets/theme-elements/logo.php:565
5718
  #: includes/elementor/widgets/theme-elements/site-title.php:314
5719
  #: includes/elementor/widgets/theme-elements/site-title.php:380
5720
  #: includes/elementor/widgets/theme-elements/site-title.php:446
@@ -5975,7 +6031,7 @@ msgstr ""
5975
  #: includes/elementor/widgets/mailchimp.php:376
5976
  #: includes/elementor/widgets/mailchimp.php:644
5977
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:540
5978
- #: includes/elementor/widgets/theme-elements/logo.php:360
5979
  msgid "Transition Duration"
5980
  msgstr ""
5981
 
@@ -6715,7 +6771,7 @@ msgstr "تصویر پس زمینه"
6715
  #: includes/elementor/widgets/testimonial.php:267
6716
  #: includes/elementor/widgets/text.php:117
6717
  #: includes/elementor/widgets/text.php:139
6718
- #: includes/elementor/widgets/theme-elements/logo.php:214
6719
  #: includes/elements/about-widget.php:100 includes/elements/image.php:15
6720
  #: includes/elements/image.php:57 includes/elements/text.php:375
6721
  #: includes/elements/text.php:404
@@ -9030,17 +9086,17 @@ msgstr ""
9030
  msgid "Custom URL"
9031
  msgstr "سی اس اس دلخواه"
9032
 
9033
- #: includes/elementor/widgets/theme-elements/logo.php:300
9034
- #: includes/elementor/widgets/theme-elements/logo.php:334
9035
- msgid "Opacity"
9036
  msgstr ""
9037
 
9038
- #: includes/elementor/widgets/theme-elements/logo.php:413
9039
- msgid "Scale on sticky"
 
9040
  msgstr ""
9041
 
9042
  #: includes/elementor/widgets/theme-elements/logo.php:425
9043
- msgid "Scale"
9044
  msgstr ""
9045
 
9046
  #: includes/elementor/widgets/theme-elements/menu.php:53
2
  msgstr ""
3
  "Project-Id-Version: Auxin Essential Elements\n"
4
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
5
+ "POT-Creation-Date: 2020-10-04 11:59:15+00:00\n"
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
1316
  msgstr "وسط"
1317
 
1318
  #: admin/includes/metaboxes/metabox-fields-general-header.php:603
1319
+ #: includes/elementor/modules/common.php:750
1320
  #: includes/elementor/widgets/button.php:234
1321
  #: includes/elementor/widgets/button.php:378
1322
  #: includes/elementor/widgets/custom-list.php:473
1488
  msgstr ""
1489
 
1490
  #: admin/includes/metaboxes/metabox-fields-general-header.php:841
1491
+ #: includes/elementor/modules/common.php:582
1492
+ #: includes/elementor/modules/common.php:638
1493
  #: includes/elementor/modules/dynamic-tags/current-date-time.php:37
1494
  #: includes/elementor/modules/dynamic-tags/current-date-time.php:55
1495
  #: includes/elementor/modules/dynamic-tags/post-date.php:49
1591
  #: includes/elementor/widgets/text.php:1512
1592
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:516
1593
  #: includes/elementor/widgets/theme-elements/copyright.php:212
1594
+ #: includes/elementor/widgets/theme-elements/logo.php:339
1595
  #: includes/elementor/widgets/theme-elements/menu.php:436
1596
  #: includes/elementor/widgets/theme-elements/menu.php:729
1597
  #: includes/elementor/widgets/theme-elements/menu.php:875
2024
  msgid "Include theme options"
2025
  msgstr "شمال شدن تنظیمات پوسته"
2026
 
2027
+ #: includes/classes/class-auxels-wc-attribute-nav-menu.php:66
2028
+ #: includes/classes/class-auxels-wc-attribute-nav-menu.php:67
2029
+ msgid "WooCommerce Attributes"
2030
+ msgstr ""
2031
+
2032
+ #: includes/classes/class-auxels-wc-attribute-nav-menu.php:111
2033
+ msgid "Attribute"
2034
+ msgstr ""
2035
+
2036
+ #: includes/classes/class-auxels-wc-attribute-nav-menu.php:121
2037
+ msgid "WooCommerce attributes"
2038
+ msgstr ""
2039
+
2040
+ #: includes/classes/class-auxels-wc-attribute-nav-menu.php:163
2041
+ #, fuzzy
2042
+ msgid "Select all"
2043
+ msgstr "نوع گالری را انتخاب کنید."
2044
+
2045
+ #: includes/classes/class-auxels-wc-attribute-nav-menu.php:166
2046
+ #, fuzzy
2047
+ msgid "Add to menu"
2048
+ msgstr "افزودن بخش"
2049
+
2050
  #: includes/classes/class-auxin-admin-dashboard.php:38
2051
  #, fuzzy
2052
  msgid "%s Status"
2105
  msgstr ""
2106
 
2107
  #: includes/classes/class-auxin-demo-importer.php:293
2108
+ #: includes/classes/class-auxin-demo-importer.php:1250
2109
  msgid "Importing Users"
2110
  msgstr ""
2111
 
2120
  msgstr "تنظیمات طراحی"
2121
 
2122
  #: includes/classes/class-auxin-demo-importer.php:339
2123
+ #: includes/classes/class-auxin-demo-importer.php:548
2124
  msgid "Importing Menus"
2125
  msgstr ""
2126
 
2132
  msgid "Retrieve Body Fails"
2133
  msgstr ""
2134
 
2135
+ #: includes/classes/class-auxin-demo-importer.php:614
2136
  msgid "Importing Sliders"
2137
  msgstr ""
2138
 
2139
+ #: includes/classes/class-auxin-demo-importer.php:1313
2140
  msgid "Preparing Site ..."
2141
  msgstr ""
2142
 
2143
+ #: includes/classes/class-auxin-demo-importer.php:1328
2144
  msgid "All steps are successful"
2145
  msgstr ""
2146
 
2349
  #: includes/elementor/widgets/heading-modern.php:309
2350
  #: includes/elementor/widgets/heading-modern.php:316
2351
  #: includes/elementor/widgets/heading-modern.php:962
2352
+ #: includes/elementor/widgets/theme-elements/logo.php:558
2353
  #: includes/elements/custom-list.php:138
2354
  #, fuzzy
2355
  msgid "Description"
3110
  msgstr "فلش های ناوبری"
3111
 
3112
  #: includes/elementor/modules/common.php:395
3113
+ msgid "Fade In For X"
3114
+ msgstr ""
3115
+
3116
+ #: includes/elementor/modules/common.php:414
3117
+ msgid "Fade In For Y"
3118
+ msgstr ""
3119
+
3120
+ #: includes/elementor/modules/common.php:433
3121
+ #: includes/elementor/widgets/theme-elements/logo.php:437
3122
+ msgid "Scale"
3123
+ msgstr ""
3124
+
3125
+ #: includes/elementor/modules/common.php:451
3126
+ msgid "Rotate Degree"
3127
+ msgstr ""
3128
+
3129
+ #: includes/elementor/modules/common.php:469
3130
+ msgid "Rotate Origin"
3131
+ msgstr ""
3132
+
3133
+ #: includes/elementor/modules/common.php:473
3134
+ #, fuzzy
3135
+ msgid "Left Bottom"
3136
+ msgstr "چپ پایین"
3137
+
3138
+ #: includes/elementor/modules/common.php:474
3139
+ #, fuzzy
3140
+ msgid "Right Bottom"
3141
+ msgstr "راست پایین"
3142
+
3143
+ #: includes/elementor/modules/common.php:488
3144
  #: includes/elements/general-element-fields.php:51
3145
  #, fuzzy
3146
  msgid "Duration"
3147
  msgstr "عنوان"
3148
 
3149
+ #: includes/elementor/modules/common.php:506
3150
  #: includes/elements/general-element-fields.php:61
3151
  msgid "Delay"
3152
  msgstr ""
3153
 
3154
+ #: includes/elementor/modules/common.php:523
3155
  msgid "Easing"
3156
  msgstr ""
3157
 
3158
+ #: includes/elementor/modules/common.php:579
3159
  #, fuzzy
3160
  msgid "Repeat Count"
3161
  msgstr "تکرار ویدیو"
3162
 
3163
+ #: includes/elementor/modules/common.php:588
3164
  msgid "Infinite"
3165
  msgstr ""
3166
 
3167
+ #: includes/elementor/modules/common.php:626
3168
  #, fuzzy
3169
  msgid "Positioning"
3170
  msgstr "موقعیت"
3171
 
3172
+ #: includes/elementor/modules/common.php:634
3173
  #, fuzzy
3174
  msgid "Position Type"
3175
  msgstr "موقعیت"
3176
 
3177
+ #: includes/elementor/modules/common.php:639
3178
  msgid "Static"
3179
  msgstr ""
3180
 
3181
+ #: includes/elementor/modules/common.php:640
3182
  msgid "Relative"
3183
  msgstr ""
3184
 
3185
+ #: includes/elementor/modules/common.php:641
3186
  msgid "Absolute"
3187
  msgstr ""
3188
 
3189
+ #: includes/elementor/modules/common.php:653
3190
  #: includes/elementor/widgets/modern-button.php:139
3191
  #: includes/elementor/widgets/staff.php:815
3192
  #: includes/elementor/widgets/text.php:363 includes/elements/staff.php:226
3195
  msgid "Top"
3196
  msgstr "بالا"
3197
 
3198
+ #: includes/elementor/modules/common.php:685
3199
  #: includes/elementor/widgets/button.php:242
3200
  #: includes/elementor/widgets/button.php:379
3201
  #: includes/elementor/widgets/custom-list.php:481
3241
  msgid "Right"
3242
  msgstr "راست"
3243
 
3244
+ #: includes/elementor/modules/common.php:718
3245
  #: includes/elementor/widgets/modern-button.php:147
3246
  #: includes/elementor/widgets/staff.php:823 includes/elements/staff.php:234
3247
  msgid "Bottom"
3248
  msgstr ""
3249
 
3250
+ #: includes/elementor/modules/common.php:782
3251
  #, fuzzy
3252
  msgid "From Center"
3253
  msgstr "وسط"
3254
 
3255
+ #: includes/elementor/modules/common.php:783
3256
  msgid ""
3257
  "Please avoid using \"From Center\" and \"Left\" options at the same time."
3258
  msgstr ""
3259
 
3260
+ #: includes/elementor/modules/common.php:839
3261
  msgid "Dimensions (extra)"
3262
  msgstr ""
3263
 
3264
+ #: includes/elementor/modules/common.php:847
3265
  #: includes/elementor/widgets/contact-form.php:217
3266
  #: includes/elementor/widgets/contact-form.php:527
3267
  #: includes/elementor/widgets/contact-form.php:747
3277
  #: includes/elementor/widgets/mailchimp.php:481
3278
  #: includes/elementor/widgets/mailchimp.php:709
3279
  #: includes/elementor/widgets/svg.php:222
3280
+ #: includes/elementor/widgets/theme-elements/logo.php:269
3281
+ #: includes/elementor/widgets/theme-elements/logo.php:527
3282
+ #: includes/elementor/widgets/theme-elements/logo.php:619
3283
  #: includes/elementor/widgets/theme-elements/shopping-cart.php:419
3284
  #, fuzzy
3285
  msgid "Max Width"
3286
  msgstr "عرض"
3287
 
3288
+ #: includes/elementor/modules/common.php:879
3289
  #: includes/elementor/widgets/image.php:458
3290
  #: includes/elementor/widgets/svg.php:250
3291
  #, fuzzy
3292
  msgid "Max Height"
3293
  msgstr "ارتفاع نقشه"
3294
 
3295
+ #: includes/elementor/modules/common.php:912
3296
  #, fuzzy
3297
  msgid "Min Width"
3298
  msgstr "عرض"
3299
 
3300
+ #: includes/elementor/modules/common.php:944
3301
  #, fuzzy
3302
  msgid "Min Height"
3303
  msgstr "ارتفاع"
3304
 
3305
+ #: includes/elementor/modules/common.php:977
3306
  #: includes/elementor/widgets/before-after.php:194
3307
  #: includes/elementor/widgets/carousel-navigation.php:254
3308
  #: includes/elementor/widgets/contact-form.php:244
3325
  msgid "Height"
3326
  msgstr "ارتفاع"
3327
 
3328
+ #: includes/elementor/modules/common.php:1009
3329
  msgid "Grow in width"
3330
  msgstr ""
3331
 
3699
  #: includes/elementor/widgets/tabs.php:373
3700
  #: includes/elementor/widgets/text.php:232
3701
  #: includes/elementor/widgets/text.php:680
3702
+ #: includes/elementor/widgets/theme-elements/logo.php:466
3703
  #: includes/elementor/widgets/theme-elements/site-title.php:94
3704
  #: includes/elementor/widgets/touch-slider.php:332
3705
  #: includes/elements/about-widget.php:43
4528
  #: includes/elementor/widgets/tabs.php:480
4529
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:240
4530
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:373
4531
+ #: includes/elementor/widgets/theme-elements/logo.php:505
4532
+ #: includes/elementor/widgets/theme-elements/logo.php:597
4533
  #: includes/elementor/widgets/theme-elements/menu.php:530
4534
  #: includes/elementor/widgets/theme-elements/menu.php:969
4535
  #: includes/elementor/widgets/theme-elements/menu.php:1328
4570
  #: includes/elementor/widgets/tabs.php:493
4571
  #: includes/elementor/widgets/text.php:1468
4572
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:463
4573
+ #: includes/elementor/widgets/theme-elements/logo.php:402
4574
  #: includes/elementor/widgets/theme-elements/menu.php:421
4575
  #: includes/elementor/widgets/theme-elements/menu.php:498
4576
  #: includes/elementor/widgets/theme-elements/menu.php:705
4662
  #: includes/elementor/widgets/text.php:1484
4663
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:490
4664
  #: includes/elementor/widgets/theme-elements/copyright.php:175
4665
+ #: includes/elementor/widgets/theme-elements/logo.php:305
4666
  #: includes/elementor/widgets/theme-elements/menu.php:359
4667
  #: includes/elementor/widgets/theme-elements/menu.php:680
4668
  #: includes/elementor/widgets/theme-elements/menu.php:796
4912
  #: includes/elementor/widgets/theme-elements/copyright.php:182
4913
  #: includes/elementor/widgets/theme-elements/copyright.php:219
4914
  #: includes/elementor/widgets/theme-elements/current-time.php:172
4915
+ #: includes/elementor/widgets/theme-elements/logo.php:474
4916
+ #: includes/elementor/widgets/theme-elements/logo.php:566
4917
  #: includes/elementor/widgets/theme-elements/menu.php:366
4918
  #: includes/elementor/widgets/theme-elements/menu.php:443
4919
  #: includes/elementor/widgets/theme-elements/menu.php:556
5085
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:128
5086
  #: includes/elementor/widgets/theme-elements/copyright.php:115
5087
  #: includes/elementor/widgets/theme-elements/copyright.php:128
5088
+ #: includes/elementor/widgets/theme-elements/logo.php:214
5089
+ #: includes/elementor/widgets/theme-elements/logo.php:427
5090
  #: includes/elementor/widgets/theme-elements/menu.php:175
5091
  #: includes/elementor/widgets/theme-elements/menu.php:190
5092
  #: includes/elementor/widgets/theme-elements/modern-search.php:157
5232
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:129
5233
  #: includes/elementor/widgets/theme-elements/copyright.php:116
5234
  #: includes/elementor/widgets/theme-elements/copyright.php:129
5235
+ #: includes/elementor/widgets/theme-elements/logo.php:215
5236
+ #: includes/elementor/widgets/theme-elements/logo.php:428
5237
  #: includes/elementor/widgets/theme-elements/menu.php:176
5238
  #: includes/elementor/widgets/theme-elements/menu.php:191
5239
  #: includes/elementor/widgets/theme-elements/modern-search.php:158
5365
  #: includes/elementor/widgets/svg.php:162
5366
  #: includes/elementor/widgets/testimonial.php:284
5367
  #: includes/elementor/widgets/testimonial.php:855
5368
+ #: includes/elementor/widgets/theme-elements/logo.php:234
5369
  #: includes/elementor/widgets/theme-elements/search.php:289
5370
  #: includes/elementor/widgets/video.php:191
5371
  #: includes/elements/before-after.php:115 includes/elements/image.php:109
5665
  #: includes/elementor/widgets/text.php:1263
5666
  #: includes/elementor/widgets/text.php:1301
5667
  #: includes/elementor/widgets/theme-elements/current-time.php:184
5668
+ #: includes/elementor/widgets/theme-elements/logo.php:519
5669
+ #: includes/elementor/widgets/theme-elements/logo.php:611
5670
  #: includes/elementor/widgets/theme-elements/site-title.php:348
5671
  #: includes/elementor/widgets/theme-elements/site-title.php:414
5672
  #: includes/elementor/widgets/theme-elements/site-title.php:480
5769
  #: includes/elementor/widgets/carousel-navigation.php:416
5770
  #: includes/elementor/widgets/custom-list.php:785
5771
  #: includes/elementor/widgets/custom-list.php:841
5772
+ #: includes/elementor/widgets/theme-elements/logo.php:485
5773
+ #: includes/elementor/widgets/theme-elements/logo.php:577
5774
  #: includes/elementor/widgets/theme-elements/site-title.php:314
5775
  #: includes/elementor/widgets/theme-elements/site-title.php:380
5776
  #: includes/elementor/widgets/theme-elements/site-title.php:446
6031
  #: includes/elementor/widgets/mailchimp.php:376
6032
  #: includes/elementor/widgets/mailchimp.php:644
6033
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:540
6034
+ #: includes/elementor/widgets/theme-elements/logo.php:372
6035
  msgid "Transition Duration"
6036
  msgstr ""
6037
 
6771
  #: includes/elementor/widgets/testimonial.php:267
6772
  #: includes/elementor/widgets/text.php:117
6773
  #: includes/elementor/widgets/text.php:139
6774
+ #: includes/elementor/widgets/theme-elements/logo.php:226
6775
  #: includes/elements/about-widget.php:100 includes/elements/image.php:15
6776
  #: includes/elements/image.php:57 includes/elements/text.php:375
6777
  #: includes/elements/text.php:404
9086
  msgid "Custom URL"
9087
  msgstr "سی اس اس دلخواه"
9088
 
9089
+ #: includes/elementor/widgets/theme-elements/logo.php:212
9090
+ msgid "Can Scale"
 
9091
  msgstr ""
9092
 
9093
+ #: includes/elementor/widgets/theme-elements/logo.php:312
9094
+ #: includes/elementor/widgets/theme-elements/logo.php:346
9095
+ msgid "Opacity"
9096
  msgstr ""
9097
 
9098
  #: includes/elementor/widgets/theme-elements/logo.php:425
9099
+ msgid "Scale on sticky"
9100
  msgstr ""
9101
 
9102
  #: includes/elementor/widgets/theme-elements/menu.php:53
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.17\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
- "POT-Creation-Date: 2020-09-19 11:02:11+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
@@ -1223,7 +1223,7 @@ msgid "Center"
1223
  msgstr ""
1224
 
1225
  #: admin/includes/metaboxes/metabox-fields-general-header.php:603
1226
- #: includes/elementor/modules/common.php:657
1227
  #: includes/elementor/widgets/button.php:234
1228
  #: includes/elementor/widgets/button.php:378
1229
  #: includes/elementor/widgets/custom-list.php:473
@@ -1384,8 +1384,8 @@ msgid "Dropdown Action On"
1384
  msgstr ""
1385
 
1386
  #: admin/includes/metaboxes/metabox-fields-general-header.php:841
1387
- #: includes/elementor/modules/common.php:489
1388
- #: includes/elementor/modules/common.php:545
1389
  #: includes/elementor/modules/dynamic-tags/current-date-time.php:37
1390
  #: includes/elementor/modules/dynamic-tags/current-date-time.php:55
1391
  #: includes/elementor/modules/dynamic-tags/post-date.php:49
@@ -1487,7 +1487,7 @@ msgstr ""
1487
  #: includes/elementor/widgets/text.php:1512
1488
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:516
1489
  #: includes/elementor/widgets/theme-elements/copyright.php:212
1490
- #: includes/elementor/widgets/theme-elements/logo.php:327
1491
  #: includes/elementor/widgets/theme-elements/menu.php:436
1492
  #: includes/elementor/widgets/theme-elements/menu.php:729
1493
  #: includes/elementor/widgets/theme-elements/menu.php:875
@@ -1889,6 +1889,27 @@ msgstr ""
1889
  msgid "Include theme options"
1890
  msgstr ""
1891
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1892
  #: includes/classes/class-auxin-admin-dashboard.php:38
1893
  msgid "%s Status"
1894
  msgstr ""
@@ -1944,7 +1965,7 @@ msgid "Importing Media"
1944
  msgstr ""
1945
 
1946
  #: includes/classes/class-auxin-demo-importer.php:293
1947
- #: includes/classes/class-auxin-demo-importer.php:1224
1948
  msgid "Importing Users"
1949
  msgstr ""
1950
 
@@ -1958,7 +1979,7 @@ msgid "Importing Options"
1958
  msgstr ""
1959
 
1960
  #: includes/classes/class-auxin-demo-importer.php:339
1961
- #: includes/classes/class-auxin-demo-importer.php:545
1962
  msgid "Importing Menus"
1963
  msgstr ""
1964
 
@@ -1970,15 +1991,15 @@ msgstr ""
1970
  msgid "Retrieve Body Fails"
1971
  msgstr ""
1972
 
1973
- #: includes/classes/class-auxin-demo-importer.php:611
1974
  msgid "Importing Sliders"
1975
  msgstr ""
1976
 
1977
- #: includes/classes/class-auxin-demo-importer.php:1287
1978
  msgid "Preparing Site ..."
1979
  msgstr ""
1980
 
1981
- #: includes/classes/class-auxin-demo-importer.php:1302
1982
  msgid "All steps are successful"
1983
  msgstr ""
1984
 
@@ -2177,7 +2198,7 @@ msgstr ""
2177
  #: includes/elementor/widgets/heading-modern.php:309
2178
  #: includes/elementor/widgets/heading-modern.php:316
2179
  #: includes/elementor/widgets/heading-modern.php:962
2180
- #: includes/elementor/widgets/theme-elements/logo.php:546
2181
  #: includes/elements/custom-list.php:138
2182
  msgid "Description"
2183
  msgstr ""
@@ -2894,48 +2915,77 @@ msgid "Animation"
2894
  msgstr ""
2895
 
2896
  #: includes/elementor/modules/common.php:395
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2897
  #: includes/elements/general-element-fields.php:51
2898
  msgid "Duration"
2899
  msgstr ""
2900
 
2901
- #: includes/elementor/modules/common.php:413
2902
  #: includes/elements/general-element-fields.php:61
2903
  msgid "Delay"
2904
  msgstr ""
2905
 
2906
- #: includes/elementor/modules/common.php:430
2907
  msgid "Easing"
2908
  msgstr ""
2909
 
2910
- #: includes/elementor/modules/common.php:486
2911
  msgid "Repeat Count"
2912
  msgstr ""
2913
 
2914
- #: includes/elementor/modules/common.php:495
2915
  msgid "Infinite"
2916
  msgstr ""
2917
 
2918
- #: includes/elementor/modules/common.php:533
2919
  msgid "Positioning"
2920
  msgstr ""
2921
 
2922
- #: includes/elementor/modules/common.php:541
2923
  msgid "Position Type"
2924
  msgstr ""
2925
 
2926
- #: includes/elementor/modules/common.php:546
2927
  msgid "Static"
2928
  msgstr ""
2929
 
2930
- #: includes/elementor/modules/common.php:547
2931
  msgid "Relative"
2932
  msgstr ""
2933
 
2934
- #: includes/elementor/modules/common.php:548
2935
  msgid "Absolute"
2936
  msgstr ""
2937
 
2938
- #: includes/elementor/modules/common.php:560
2939
  #: includes/elementor/widgets/modern-button.php:139
2940
  #: includes/elementor/widgets/staff.php:815
2941
  #: includes/elementor/widgets/text.php:363 includes/elements/staff.php:226
@@ -2943,7 +2993,7 @@ msgstr ""
2943
  msgid "Top"
2944
  msgstr ""
2945
 
2946
- #: includes/elementor/modules/common.php:592
2947
  #: includes/elementor/widgets/button.php:242
2948
  #: includes/elementor/widgets/button.php:379
2949
  #: includes/elementor/widgets/custom-list.php:481
@@ -2989,25 +3039,25 @@ msgstr ""
2989
  msgid "Right"
2990
  msgstr ""
2991
 
2992
- #: includes/elementor/modules/common.php:625
2993
  #: includes/elementor/widgets/modern-button.php:147
2994
  #: includes/elementor/widgets/staff.php:823 includes/elements/staff.php:234
2995
  msgid "Bottom"
2996
  msgstr ""
2997
 
2998
- #: includes/elementor/modules/common.php:689
2999
  msgid "From Center"
3000
  msgstr ""
3001
 
3002
- #: includes/elementor/modules/common.php:690
3003
  msgid "Please avoid using \"From Center\" and \"Left\" options at the same time."
3004
  msgstr ""
3005
 
3006
- #: includes/elementor/modules/common.php:746
3007
  msgid "Dimensions (extra)"
3008
  msgstr ""
3009
 
3010
- #: includes/elementor/modules/common.php:754
3011
  #: includes/elementor/widgets/contact-form.php:217
3012
  #: includes/elementor/widgets/contact-form.php:527
3013
  #: includes/elementor/widgets/contact-form.php:747
@@ -3023,28 +3073,28 @@ msgstr ""
3023
  #: includes/elementor/widgets/mailchimp.php:481
3024
  #: includes/elementor/widgets/mailchimp.php:709
3025
  #: includes/elementor/widgets/svg.php:222
3026
- #: includes/elementor/widgets/theme-elements/logo.php:257
3027
- #: includes/elementor/widgets/theme-elements/logo.php:515
3028
- #: includes/elementor/widgets/theme-elements/logo.php:607
3029
  #: includes/elementor/widgets/theme-elements/shopping-cart.php:419
3030
  msgid "Max Width"
3031
  msgstr ""
3032
 
3033
- #: includes/elementor/modules/common.php:786
3034
  #: includes/elementor/widgets/image.php:458
3035
  #: includes/elementor/widgets/svg.php:250
3036
  msgid "Max Height"
3037
  msgstr ""
3038
 
3039
- #: includes/elementor/modules/common.php:819
3040
  msgid "Min Width"
3041
  msgstr ""
3042
 
3043
- #: includes/elementor/modules/common.php:851
3044
  msgid "Min Height"
3045
  msgstr ""
3046
 
3047
- #: includes/elementor/modules/common.php:884
3048
  #: includes/elementor/widgets/before-after.php:194
3049
  #: includes/elementor/widgets/carousel-navigation.php:254
3050
  #: includes/elementor/widgets/contact-form.php:244
@@ -3067,7 +3117,7 @@ msgstr ""
3067
  msgid "Height"
3068
  msgstr ""
3069
 
3070
- #: includes/elementor/modules/common.php:916
3071
  msgid "Grow in width"
3072
  msgstr ""
3073
 
@@ -3414,7 +3464,7 @@ msgstr ""
3414
  #: includes/elementor/widgets/tabs.php:373
3415
  #: includes/elementor/widgets/text.php:232
3416
  #: includes/elementor/widgets/text.php:680
3417
- #: includes/elementor/widgets/theme-elements/logo.php:454
3418
  #: includes/elementor/widgets/theme-elements/site-title.php:94
3419
  #: includes/elementor/widgets/touch-slider.php:332
3420
  #: includes/elements/about-widget.php:43
@@ -4183,8 +4233,8 @@ msgstr ""
4183
  #: includes/elementor/widgets/tabs.php:480
4184
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:240
4185
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:373
4186
- #: includes/elementor/widgets/theme-elements/logo.php:493
4187
- #: includes/elementor/widgets/theme-elements/logo.php:585
4188
  #: includes/elementor/widgets/theme-elements/menu.php:530
4189
  #: includes/elementor/widgets/theme-elements/menu.php:969
4190
  #: includes/elementor/widgets/theme-elements/menu.php:1328
@@ -4225,7 +4275,7 @@ msgstr ""
4225
  #: includes/elementor/widgets/tabs.php:493
4226
  #: includes/elementor/widgets/text.php:1468
4227
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:463
4228
- #: includes/elementor/widgets/theme-elements/logo.php:390
4229
  #: includes/elementor/widgets/theme-elements/menu.php:421
4230
  #: includes/elementor/widgets/theme-elements/menu.php:498
4231
  #: includes/elementor/widgets/theme-elements/menu.php:705
@@ -4316,7 +4366,7 @@ msgstr ""
4316
  #: includes/elementor/widgets/text.php:1484
4317
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:490
4318
  #: includes/elementor/widgets/theme-elements/copyright.php:175
4319
- #: includes/elementor/widgets/theme-elements/logo.php:293
4320
  #: includes/elementor/widgets/theme-elements/menu.php:359
4321
  #: includes/elementor/widgets/theme-elements/menu.php:680
4322
  #: includes/elementor/widgets/theme-elements/menu.php:796
@@ -4563,8 +4613,8 @@ msgstr ""
4563
  #: includes/elementor/widgets/theme-elements/copyright.php:182
4564
  #: includes/elementor/widgets/theme-elements/copyright.php:219
4565
  #: includes/elementor/widgets/theme-elements/current-time.php:172
4566
- #: includes/elementor/widgets/theme-elements/logo.php:462
4567
- #: includes/elementor/widgets/theme-elements/logo.php:554
4568
  #: includes/elementor/widgets/theme-elements/menu.php:366
4569
  #: includes/elementor/widgets/theme-elements/menu.php:443
4570
  #: includes/elementor/widgets/theme-elements/menu.php:556
@@ -4734,7 +4784,8 @@ msgstr ""
4734
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:128
4735
  #: includes/elementor/widgets/theme-elements/copyright.php:115
4736
  #: includes/elementor/widgets/theme-elements/copyright.php:128
4737
- #: includes/elementor/widgets/theme-elements/logo.php:415
 
4738
  #: includes/elementor/widgets/theme-elements/menu.php:175
4739
  #: includes/elementor/widgets/theme-elements/menu.php:190
4740
  #: includes/elementor/widgets/theme-elements/modern-search.php:157
@@ -4880,7 +4931,8 @@ msgstr ""
4880
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:129
4881
  #: includes/elementor/widgets/theme-elements/copyright.php:116
4882
  #: includes/elementor/widgets/theme-elements/copyright.php:129
4883
- #: includes/elementor/widgets/theme-elements/logo.php:416
 
4884
  #: includes/elementor/widgets/theme-elements/menu.php:176
4885
  #: includes/elementor/widgets/theme-elements/menu.php:191
4886
  #: includes/elementor/widgets/theme-elements/modern-search.php:158
@@ -5010,7 +5062,7 @@ msgstr ""
5010
  #: includes/elementor/widgets/svg.php:162
5011
  #: includes/elementor/widgets/testimonial.php:284
5012
  #: includes/elementor/widgets/testimonial.php:855
5013
- #: includes/elementor/widgets/theme-elements/logo.php:222
5014
  #: includes/elementor/widgets/theme-elements/search.php:289
5015
  #: includes/elementor/widgets/video.php:191
5016
  #: includes/elements/before-after.php:115 includes/elements/image.php:109
@@ -5302,8 +5354,8 @@ msgstr ""
5302
  #: includes/elementor/widgets/text.php:1263
5303
  #: includes/elementor/widgets/text.php:1301
5304
  #: includes/elementor/widgets/theme-elements/current-time.php:184
5305
- #: includes/elementor/widgets/theme-elements/logo.php:507
5306
- #: includes/elementor/widgets/theme-elements/logo.php:599
5307
  #: includes/elementor/widgets/theme-elements/site-title.php:348
5308
  #: includes/elementor/widgets/theme-elements/site-title.php:414
5309
  #: includes/elementor/widgets/theme-elements/site-title.php:480
@@ -5396,8 +5448,8 @@ msgstr ""
5396
  #: includes/elementor/widgets/carousel-navigation.php:416
5397
  #: includes/elementor/widgets/custom-list.php:785
5398
  #: includes/elementor/widgets/custom-list.php:841
5399
- #: includes/elementor/widgets/theme-elements/logo.php:473
5400
- #: includes/elementor/widgets/theme-elements/logo.php:565
5401
  #: includes/elementor/widgets/theme-elements/site-title.php:314
5402
  #: includes/elementor/widgets/theme-elements/site-title.php:380
5403
  #: includes/elementor/widgets/theme-elements/site-title.php:446
@@ -5644,7 +5696,7 @@ msgstr ""
5644
  #: includes/elementor/widgets/mailchimp.php:376
5645
  #: includes/elementor/widgets/mailchimp.php:644
5646
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:540
5647
- #: includes/elementor/widgets/theme-elements/logo.php:360
5648
  msgid "Transition Duration"
5649
  msgstr ""
5650
 
@@ -6334,7 +6386,7 @@ msgstr ""
6334
  #: includes/elementor/widgets/testimonial.php:267
6335
  #: includes/elementor/widgets/text.php:117
6336
  #: includes/elementor/widgets/text.php:139
6337
- #: includes/elementor/widgets/theme-elements/logo.php:214
6338
  #: includes/elements/about-widget.php:100 includes/elements/image.php:15
6339
  #: includes/elements/image.php:57 includes/elements/text.php:375
6340
  #: includes/elements/text.php:404
@@ -8495,17 +8547,17 @@ msgstr ""
8495
  msgid "Custom URL"
8496
  msgstr ""
8497
 
8498
- #: includes/elementor/widgets/theme-elements/logo.php:300
8499
- #: includes/elementor/widgets/theme-elements/logo.php:334
8500
- msgid "Opacity"
8501
  msgstr ""
8502
 
8503
- #: includes/elementor/widgets/theme-elements/logo.php:413
8504
- msgid "Scale on sticky"
 
8505
  msgstr ""
8506
 
8507
  #: includes/elementor/widgets/theme-elements/logo.php:425
8508
- msgid "Scale"
8509
  msgstr ""
8510
 
8511
  #: includes/elementor/widgets/theme-elements/menu.php:53
1
  # Averta Copyright (c) {2020}
2
  msgid ""
3
  msgstr ""
4
+ "Project-Id-Version: Phlox Core Elements 2.6.19\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
+ "POT-Creation-Date: 2020-10-04 11:59:15+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
1223
  msgstr ""
1224
 
1225
  #: admin/includes/metaboxes/metabox-fields-general-header.php:603
1226
+ #: includes/elementor/modules/common.php:750
1227
  #: includes/elementor/widgets/button.php:234
1228
  #: includes/elementor/widgets/button.php:378
1229
  #: includes/elementor/widgets/custom-list.php:473
1384
  msgstr ""
1385
 
1386
  #: admin/includes/metaboxes/metabox-fields-general-header.php:841
1387
+ #: includes/elementor/modules/common.php:582
1388
+ #: includes/elementor/modules/common.php:638
1389
  #: includes/elementor/modules/dynamic-tags/current-date-time.php:37
1390
  #: includes/elementor/modules/dynamic-tags/current-date-time.php:55
1391
  #: includes/elementor/modules/dynamic-tags/post-date.php:49
1487
  #: includes/elementor/widgets/text.php:1512
1488
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:516
1489
  #: includes/elementor/widgets/theme-elements/copyright.php:212
1490
+ #: includes/elementor/widgets/theme-elements/logo.php:339
1491
  #: includes/elementor/widgets/theme-elements/menu.php:436
1492
  #: includes/elementor/widgets/theme-elements/menu.php:729
1493
  #: includes/elementor/widgets/theme-elements/menu.php:875
1889
  msgid "Include theme options"
1890
  msgstr ""
1891
 
1892
+ #: includes/classes/class-auxels-wc-attribute-nav-menu.php:66
1893
+ #: includes/classes/class-auxels-wc-attribute-nav-menu.php:67
1894
+ msgid "WooCommerce Attributes"
1895
+ msgstr ""
1896
+
1897
+ #: includes/classes/class-auxels-wc-attribute-nav-menu.php:111
1898
+ msgid "Attribute"
1899
+ msgstr ""
1900
+
1901
+ #: includes/classes/class-auxels-wc-attribute-nav-menu.php:121
1902
+ msgid "WooCommerce attributes"
1903
+ msgstr ""
1904
+
1905
+ #: includes/classes/class-auxels-wc-attribute-nav-menu.php:163
1906
+ msgid "Select all"
1907
+ msgstr ""
1908
+
1909
+ #: includes/classes/class-auxels-wc-attribute-nav-menu.php:166
1910
+ msgid "Add to menu"
1911
+ msgstr ""
1912
+
1913
  #: includes/classes/class-auxin-admin-dashboard.php:38
1914
  msgid "%s Status"
1915
  msgstr ""
1965
  msgstr ""
1966
 
1967
  #: includes/classes/class-auxin-demo-importer.php:293
1968
+ #: includes/classes/class-auxin-demo-importer.php:1250
1969
  msgid "Importing Users"
1970
  msgstr ""
1971
 
1979
  msgstr ""
1980
 
1981
  #: includes/classes/class-auxin-demo-importer.php:339
1982
+ #: includes/classes/class-auxin-demo-importer.php:548
1983
  msgid "Importing Menus"
1984
  msgstr ""
1985
 
1991
  msgid "Retrieve Body Fails"
1992
  msgstr ""
1993
 
1994
+ #: includes/classes/class-auxin-demo-importer.php:614
1995
  msgid "Importing Sliders"
1996
  msgstr ""
1997
 
1998
+ #: includes/classes/class-auxin-demo-importer.php:1313
1999
  msgid "Preparing Site ..."
2000
  msgstr ""
2001
 
2002
+ #: includes/classes/class-auxin-demo-importer.php:1328
2003
  msgid "All steps are successful"
2004
  msgstr ""
2005
 
2198
  #: includes/elementor/widgets/heading-modern.php:309
2199
  #: includes/elementor/widgets/heading-modern.php:316
2200
  #: includes/elementor/widgets/heading-modern.php:962
2201
+ #: includes/elementor/widgets/theme-elements/logo.php:558
2202
  #: includes/elements/custom-list.php:138
2203
  msgid "Description"
2204
  msgstr ""
2915
  msgstr ""
2916
 
2917
  #: includes/elementor/modules/common.php:395
2918
+ msgid "Fade In For X"
2919
+ msgstr ""
2920
+
2921
+ #: includes/elementor/modules/common.php:414
2922
+ msgid "Fade In For Y"
2923
+ msgstr ""
2924
+
2925
+ #: includes/elementor/modules/common.php:433
2926
+ #: includes/elementor/widgets/theme-elements/logo.php:437
2927
+ msgid "Scale"
2928
+ msgstr ""
2929
+
2930
+ #: includes/elementor/modules/common.php:451
2931
+ msgid "Rotate Degree"
2932
+ msgstr ""
2933
+
2934
+ #: includes/elementor/modules/common.php:469
2935
+ msgid "Rotate Origin"
2936
+ msgstr ""
2937
+
2938
+ #: includes/elementor/modules/common.php:473
2939
+ msgid "Left Bottom"
2940
+ msgstr ""
2941
+
2942
+ #: includes/elementor/modules/common.php:474
2943
+ msgid "Right Bottom"
2944
+ msgstr ""
2945
+
2946
+ #: includes/elementor/modules/common.php:488
2947
  #: includes/elements/general-element-fields.php:51
2948
  msgid "Duration"
2949
  msgstr ""
2950
 
2951
+ #: includes/elementor/modules/common.php:506
2952
  #: includes/elements/general-element-fields.php:61
2953
  msgid "Delay"
2954
  msgstr ""
2955
 
2956
+ #: includes/elementor/modules/common.php:523
2957
  msgid "Easing"
2958
  msgstr ""
2959
 
2960
+ #: includes/elementor/modules/common.php:579
2961
  msgid "Repeat Count"
2962
  msgstr ""
2963
 
2964
+ #: includes/elementor/modules/common.php:588
2965
  msgid "Infinite"
2966
  msgstr ""
2967
 
2968
+ #: includes/elementor/modules/common.php:626
2969
  msgid "Positioning"
2970
  msgstr ""
2971
 
2972
+ #: includes/elementor/modules/common.php:634
2973
  msgid "Position Type"
2974
  msgstr ""
2975
 
2976
+ #: includes/elementor/modules/common.php:639
2977
  msgid "Static"
2978
  msgstr ""
2979
 
2980
+ #: includes/elementor/modules/common.php:640
2981
  msgid "Relative"
2982
  msgstr ""
2983
 
2984
+ #: includes/elementor/modules/common.php:641
2985
  msgid "Absolute"
2986
  msgstr ""
2987
 
2988
+ #: includes/elementor/modules/common.php:653
2989
  #: includes/elementor/widgets/modern-button.php:139
2990
  #: includes/elementor/widgets/staff.php:815
2991
  #: includes/elementor/widgets/text.php:363 includes/elements/staff.php:226
2993
  msgid "Top"
2994
  msgstr ""
2995
 
2996
+ #: includes/elementor/modules/common.php:685
2997
  #: includes/elementor/widgets/button.php:242
2998
  #: includes/elementor/widgets/button.php:379
2999
  #: includes/elementor/widgets/custom-list.php:481
3039
  msgid "Right"
3040
  msgstr ""
3041
 
3042
+ #: includes/elementor/modules/common.php:718
3043
  #: includes/elementor/widgets/modern-button.php:147
3044
  #: includes/elementor/widgets/staff.php:823 includes/elements/staff.php:234
3045
  msgid "Bottom"
3046
  msgstr ""
3047
 
3048
+ #: includes/elementor/modules/common.php:782
3049
  msgid "From Center"
3050
  msgstr ""
3051
 
3052
+ #: includes/elementor/modules/common.php:783
3053
  msgid "Please avoid using \"From Center\" and \"Left\" options at the same time."
3054
  msgstr ""
3055
 
3056
+ #: includes/elementor/modules/common.php:839
3057
  msgid "Dimensions (extra)"
3058
  msgstr ""
3059
 
3060
+ #: includes/elementor/modules/common.php:847
3061
  #: includes/elementor/widgets/contact-form.php:217
3062
  #: includes/elementor/widgets/contact-form.php:527
3063
  #: includes/elementor/widgets/contact-form.php:747
3073
  #: includes/elementor/widgets/mailchimp.php:481
3074
  #: includes/elementor/widgets/mailchimp.php:709
3075
  #: includes/elementor/widgets/svg.php:222
3076
+ #: includes/elementor/widgets/theme-elements/logo.php:269
3077
+ #: includes/elementor/widgets/theme-elements/logo.php:527
3078
+ #: includes/elementor/widgets/theme-elements/logo.php:619
3079
  #: includes/elementor/widgets/theme-elements/shopping-cart.php:419
3080
  msgid "Max Width"
3081
  msgstr ""
3082
 
3083
+ #: includes/elementor/modules/common.php:879
3084
  #: includes/elementor/widgets/image.php:458
3085
  #: includes/elementor/widgets/svg.php:250
3086
  msgid "Max Height"
3087
  msgstr ""
3088
 
3089
+ #: includes/elementor/modules/common.php:912
3090
  msgid "Min Width"
3091
  msgstr ""
3092
 
3093
+ #: includes/elementor/modules/common.php:944
3094
  msgid "Min Height"
3095
  msgstr ""
3096
 
3097
+ #: includes/elementor/modules/common.php:977
3098
  #: includes/elementor/widgets/before-after.php:194
3099
  #: includes/elementor/widgets/carousel-navigation.php:254
3100
  #: includes/elementor/widgets/contact-form.php:244
3117
  msgid "Height"
3118
  msgstr ""
3119
 
3120
+ #: includes/elementor/modules/common.php:1009
3121
  msgid "Grow in width"
3122
  msgstr ""
3123
 
3464
  #: includes/elementor/widgets/tabs.php:373
3465
  #: includes/elementor/widgets/text.php:232
3466
  #: includes/elementor/widgets/text.php:680
3467
+ #: includes/elementor/widgets/theme-elements/logo.php:466
3468
  #: includes/elementor/widgets/theme-elements/site-title.php:94
3469
  #: includes/elementor/widgets/touch-slider.php:332
3470
  #: includes/elements/about-widget.php:43
4233
  #: includes/elementor/widgets/tabs.php:480
4234
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:240
4235
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:373
4236
+ #: includes/elementor/widgets/theme-elements/logo.php:505
4237
+ #: includes/elementor/widgets/theme-elements/logo.php:597
4238
  #: includes/elementor/widgets/theme-elements/menu.php:530
4239
  #: includes/elementor/widgets/theme-elements/menu.php:969
4240
  #: includes/elementor/widgets/theme-elements/menu.php:1328
4275
  #: includes/elementor/widgets/tabs.php:493
4276
  #: includes/elementor/widgets/text.php:1468
4277
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:463
4278
+ #: includes/elementor/widgets/theme-elements/logo.php:402
4279
  #: includes/elementor/widgets/theme-elements/menu.php:421
4280
  #: includes/elementor/widgets/theme-elements/menu.php:498
4281
  #: includes/elementor/widgets/theme-elements/menu.php:705
4366
  #: includes/elementor/widgets/text.php:1484
4367
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:490
4368
  #: includes/elementor/widgets/theme-elements/copyright.php:175
4369
+ #: includes/elementor/widgets/theme-elements/logo.php:305
4370
  #: includes/elementor/widgets/theme-elements/menu.php:359
4371
  #: includes/elementor/widgets/theme-elements/menu.php:680
4372
  #: includes/elementor/widgets/theme-elements/menu.php:796
4613
  #: includes/elementor/widgets/theme-elements/copyright.php:182
4614
  #: includes/elementor/widgets/theme-elements/copyright.php:219
4615
  #: includes/elementor/widgets/theme-elements/current-time.php:172
4616
+ #: includes/elementor/widgets/theme-elements/logo.php:474
4617
+ #: includes/elementor/widgets/theme-elements/logo.php:566
4618
  #: includes/elementor/widgets/theme-elements/menu.php:366
4619
  #: includes/elementor/widgets/theme-elements/menu.php:443
4620
  #: includes/elementor/widgets/theme-elements/menu.php:556
4784
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:128
4785
  #: includes/elementor/widgets/theme-elements/copyright.php:115
4786
  #: includes/elementor/widgets/theme-elements/copyright.php:128
4787
+ #: includes/elementor/widgets/theme-elements/logo.php:214
4788
+ #: includes/elementor/widgets/theme-elements/logo.php:427
4789
  #: includes/elementor/widgets/theme-elements/menu.php:175
4790
  #: includes/elementor/widgets/theme-elements/menu.php:190
4791
  #: includes/elementor/widgets/theme-elements/modern-search.php:157
4931
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:129
4932
  #: includes/elementor/widgets/theme-elements/copyright.php:116
4933
  #: includes/elementor/widgets/theme-elements/copyright.php:129
4934
+ #: includes/elementor/widgets/theme-elements/logo.php:215
4935
+ #: includes/elementor/widgets/theme-elements/logo.php:428
4936
  #: includes/elementor/widgets/theme-elements/menu.php:176
4937
  #: includes/elementor/widgets/theme-elements/menu.php:191
4938
  #: includes/elementor/widgets/theme-elements/modern-search.php:158
5062
  #: includes/elementor/widgets/svg.php:162
5063
  #: includes/elementor/widgets/testimonial.php:284
5064
  #: includes/elementor/widgets/testimonial.php:855
5065
+ #: includes/elementor/widgets/theme-elements/logo.php:234
5066
  #: includes/elementor/widgets/theme-elements/search.php:289
5067
  #: includes/elementor/widgets/video.php:191
5068
  #: includes/elements/before-after.php:115 includes/elements/image.php:109
5354
  #: includes/elementor/widgets/text.php:1263
5355
  #: includes/elementor/widgets/text.php:1301
5356
  #: includes/elementor/widgets/theme-elements/current-time.php:184
5357
+ #: includes/elementor/widgets/theme-elements/logo.php:519
5358
+ #: includes/elementor/widgets/theme-elements/logo.php:611
5359
  #: includes/elementor/widgets/theme-elements/site-title.php:348
5360
  #: includes/elementor/widgets/theme-elements/site-title.php:414
5361
  #: includes/elementor/widgets/theme-elements/site-title.php:480
5448
  #: includes/elementor/widgets/carousel-navigation.php:416
5449
  #: includes/elementor/widgets/custom-list.php:785
5450
  #: includes/elementor/widgets/custom-list.php:841
5451
+ #: includes/elementor/widgets/theme-elements/logo.php:485
5452
+ #: includes/elementor/widgets/theme-elements/logo.php:577
5453
  #: includes/elementor/widgets/theme-elements/site-title.php:314
5454
  #: includes/elementor/widgets/theme-elements/site-title.php:380
5455
  #: includes/elementor/widgets/theme-elements/site-title.php:446
5696
  #: includes/elementor/widgets/mailchimp.php:376
5697
  #: includes/elementor/widgets/mailchimp.php:644
5698
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:540
5699
+ #: includes/elementor/widgets/theme-elements/logo.php:372
5700
  msgid "Transition Duration"
5701
  msgstr ""
5702
 
6386
  #: includes/elementor/widgets/testimonial.php:267
6387
  #: includes/elementor/widgets/text.php:117
6388
  #: includes/elementor/widgets/text.php:139
6389
+ #: includes/elementor/widgets/theme-elements/logo.php:226
6390
  #: includes/elements/about-widget.php:100 includes/elements/image.php:15
6391
  #: includes/elements/image.php:57 includes/elements/text.php:375
6392
  #: includes/elements/text.php:404
8547
  msgid "Custom URL"
8548
  msgstr ""
8549
 
8550
+ #: includes/elementor/widgets/theme-elements/logo.php:212
8551
+ msgid "Can Scale"
 
8552
  msgstr ""
8553
 
8554
+ #: includes/elementor/widgets/theme-elements/logo.php:312
8555
+ #: includes/elementor/widgets/theme-elements/logo.php:346
8556
+ msgid "Opacity"
8557
  msgstr ""
8558
 
8559
  #: includes/elementor/widgets/theme-elements/logo.php:425
8560
+ msgid "Scale on sticky"
8561
  msgstr ""
8562
 
8563
  #: includes/elementor/widgets/theme-elements/menu.php:53
public/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.6.17 (2020-09)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */
1
+ /*! Phlox Core Plugin - v2.6.19 (2020-10)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */