Shortcodes and extra features for Phlox theme - Version 2.7.1

Version Description

Download this release

Release Info

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

Code changes from version 2.7.0 to 2.7.1

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.7.0
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.7.1
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.7.0 (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!
1
+ /*! Phlox Core Plugin - v2.7.1 (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.7.0
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.7.1
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
includes/classes/class-auxin-demo-importer.php CHANGED
@@ -1322,6 +1322,10 @@ class Auxin_Demo_Importer {
1322
  * @return String
1323
  */
1324
  public function prepare_site() {
 
 
 
 
1325
  // Remove local demo file
1326
  wp_delete_file( $this->get_theme_dir() . '/demo.json' );
1327
  // Send final success message
@@ -1956,7 +1960,9 @@ class Auxin_Demo_Importer {
1956
  if ( ! empty( $matches ) ) {
1957
  $new_css = $css[0];
1958
  foreach( $matches[0] as $key => $url ) {
1959
- $new_url = str_replace( '\/' . $matches[1][$key], '', $url );
 
 
1960
  $new_url = str_replace( "https:\/\/demo.phlox.pro\/", $site_url, $new_url );
1961
  $new_css = str_replace( $url, $new_url, $new_css );
1962
  }
@@ -1976,7 +1982,9 @@ class Auxin_Demo_Importer {
1976
 
1977
  // remove network part of url from importing
1978
  // http:\/\/...\/\/wp-content\/uploads\/sites\/12\/2020\/09 => http:\/\/...\/\/wp-content\/uploads\/2020\/09
1979
- $meta = preg_replace( "#sites\\\/\d*\\\/#", '', $meta );
 
 
1980
 
1981
  return $meta;
1982
  }
1322
  * @return String
1323
  */
1324
  public function prepare_site() {
1325
+ // Clear elementor cache
1326
+ if ( class_exists( '\\Elementor\\Plugin' ) ) {
1327
+ \Elementor\Plugin::instance()->files_manager->clear_cache();
1328
+ }
1329
  // Remove local demo file
1330
  wp_delete_file( $this->get_theme_dir() . '/demo.json' );
1331
  // Send final success message
1960
  if ( ! empty( $matches ) ) {
1961
  $new_css = $css[0];
1962
  foreach( $matches[0] as $key => $url ) {
1963
+ if ( ! empty( $matches[1][$key] ) ) {
1964
+ $new_url = str_replace( '\/' . $matches[1][$key], '', $url );
1965
+ }
1966
  $new_url = str_replace( "https:\/\/demo.phlox.pro\/", $site_url, $new_url );
1967
  $new_css = str_replace( $url, $new_url, $new_css );
1968
  }
1982
 
1983
  // remove network part of url from importing
1984
  // http:\/\/...\/\/wp-content\/uploads\/sites\/12\/2020\/09 => http:\/\/...\/\/wp-content\/uploads\/2020\/09
1985
+ if ( ! is_array( $meta ) ) {
1986
+ $meta = preg_replace( "#sites\\\/\d*\\\/#", '', $meta );
1987
+ }
1988
 
1989
  return $meta;
1990
  }
includes/define.php CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
12
  }
13
 
14
 
15
- define( 'AUXELS_VERSION' , '2.7.0' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
12
  }
13
 
14
 
15
+ define( 'AUXELS_VERSION' , '2.7.1' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
includes/elementor/widgets/theme-elements/logo.php CHANGED
@@ -205,18 +205,6 @@ class Logo extends Widget_Base {
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,9 +690,6 @@ class Logo extends Widget_Base {
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 = '';
@@ -746,7 +731,7 @@ class Logo extends Widget_Base {
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">';
205
  'show_label' => false,
206
  )
207
  );
 
 
 
 
 
 
 
 
 
 
 
 
208
 
209
  $this->end_controls_section();
210
 
690
 
691
  $link_attr = auxin_make_html_attributes( $link_attr );
692
 
 
 
 
693
  if ( $custom_logo_id ) {
694
 
695
  $logo_image_markup = '';
731
  }
732
  }
733
 
734
+ $output .= '<div class="aux-widget-logo">';
735
  $output .= $logo_markup;
736
  $output .= '<section class="aux-logo-text">';
737
  $output .= '<h3 class="site-title">';
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-10-20 11:18:04+00:00\n"
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -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: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
@@ -2140,7 +2140,7 @@ msgstr ""
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,7 +2349,7 @@ msgstr ""
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"
@@ -3116,7 +3116,7 @@ msgid "Fade In For Y"
3116
  msgstr ""
3117
 
3118
  #: includes/elementor/modules/common.php:435
3119
- #: includes/elementor/widgets/theme-elements/logo.php:437
3120
  msgid "Scale"
3121
  msgstr ""
3122
 
@@ -3275,9 +3275,9 @@ msgstr ""
3275
  #: includes/elementor/widgets/mailchimp.php:481
3276
  #: includes/elementor/widgets/mailchimp.php:709
3277
  #: includes/elementor/widgets/svg.php:222
3278
- #: includes/elementor/widgets/theme-elements/logo.php:269
3279
- #: includes/elementor/widgets/theme-elements/logo.php:527
3280
- #: includes/elementor/widgets/theme-elements/logo.php:619
3281
  #: includes/elementor/widgets/theme-elements/shopping-cart.php:419
3282
  #, fuzzy
3283
  msgid "Max Width"
@@ -3697,7 +3697,7 @@ msgstr "بخش"
3697
  #: includes/elementor/widgets/tabs.php:373
3698
  #: includes/elementor/widgets/text.php:232
3699
  #: includes/elementor/widgets/text.php:680
3700
- #: includes/elementor/widgets/theme-elements/logo.php:466
3701
  #: includes/elementor/widgets/theme-elements/site-title.php:94
3702
  #: includes/elementor/widgets/touch-slider.php:332
3703
  #: includes/elements/about-widget.php:43
@@ -4526,8 +4526,8 @@ msgstr ""
4526
  #: includes/elementor/widgets/tabs.php:480
4527
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:240
4528
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:373
4529
- #: includes/elementor/widgets/theme-elements/logo.php:505
4530
- #: includes/elementor/widgets/theme-elements/logo.php:597
4531
  #: includes/elementor/widgets/theme-elements/menu.php:530
4532
  #: includes/elementor/widgets/theme-elements/menu.php:969
4533
  #: includes/elementor/widgets/theme-elements/menu.php:1328
@@ -4568,7 +4568,7 @@ msgstr ""
4568
  #: includes/elementor/widgets/tabs.php:493
4569
  #: includes/elementor/widgets/text.php:1468
4570
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:463
4571
- #: includes/elementor/widgets/theme-elements/logo.php:402
4572
  #: includes/elementor/widgets/theme-elements/menu.php:421
4573
  #: includes/elementor/widgets/theme-elements/menu.php:498
4574
  #: includes/elementor/widgets/theme-elements/menu.php:705
@@ -4660,7 +4660,7 @@ msgstr "کادربندی شده"
4660
  #: includes/elementor/widgets/text.php:1484
4661
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:490
4662
  #: includes/elementor/widgets/theme-elements/copyright.php:175
4663
- #: includes/elementor/widgets/theme-elements/logo.php:305
4664
  #: includes/elementor/widgets/theme-elements/menu.php:359
4665
  #: includes/elementor/widgets/theme-elements/menu.php:680
4666
  #: includes/elementor/widgets/theme-elements/menu.php:796
@@ -4910,8 +4910,8 @@ msgstr "تیتر گذاری"
4910
  #: includes/elementor/widgets/theme-elements/copyright.php:182
4911
  #: includes/elementor/widgets/theme-elements/copyright.php:219
4912
  #: includes/elementor/widgets/theme-elements/current-time.php:172
4913
- #: includes/elementor/widgets/theme-elements/logo.php:474
4914
- #: includes/elementor/widgets/theme-elements/logo.php:566
4915
  #: includes/elementor/widgets/theme-elements/menu.php:366
4916
  #: includes/elementor/widgets/theme-elements/menu.php:443
4917
  #: includes/elementor/widgets/theme-elements/menu.php:556
@@ -5083,8 +5083,7 @@ msgstr "فایل صوتی را به صورت خودکار پخش کن."
5083
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:128
5084
  #: includes/elementor/widgets/theme-elements/copyright.php:115
5085
  #: includes/elementor/widgets/theme-elements/copyright.php:128
5086
- #: includes/elementor/widgets/theme-elements/logo.php:214
5087
- #: includes/elementor/widgets/theme-elements/logo.php:427
5088
  #: includes/elementor/widgets/theme-elements/menu.php:175
5089
  #: includes/elementor/widgets/theme-elements/menu.php:190
5090
  #: includes/elementor/widgets/theme-elements/modern-search.php:157
@@ -5230,8 +5229,7 @@ msgstr ""
5230
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:129
5231
  #: includes/elementor/widgets/theme-elements/copyright.php:116
5232
  #: includes/elementor/widgets/theme-elements/copyright.php:129
5233
- #: includes/elementor/widgets/theme-elements/logo.php:215
5234
- #: includes/elementor/widgets/theme-elements/logo.php:428
5235
  #: includes/elementor/widgets/theme-elements/menu.php:176
5236
  #: includes/elementor/widgets/theme-elements/menu.php:191
5237
  #: includes/elementor/widgets/theme-elements/modern-search.php:158
@@ -5363,7 +5361,7 @@ msgstr ""
5363
  #: includes/elementor/widgets/svg.php:162
5364
  #: includes/elementor/widgets/testimonial.php:284
5365
  #: includes/elementor/widgets/testimonial.php:855
5366
- #: includes/elementor/widgets/theme-elements/logo.php:234
5367
  #: includes/elementor/widgets/theme-elements/search.php:289
5368
  #: includes/elementor/widgets/video.php:191
5369
  #: includes/elements/before-after.php:115 includes/elements/image.php:109
@@ -5663,8 +5661,8 @@ msgstr ""
5663
  #: includes/elementor/widgets/text.php:1263
5664
  #: includes/elementor/widgets/text.php:1301
5665
  #: includes/elementor/widgets/theme-elements/current-time.php:184
5666
- #: includes/elementor/widgets/theme-elements/logo.php:519
5667
- #: includes/elementor/widgets/theme-elements/logo.php:611
5668
  #: includes/elementor/widgets/theme-elements/site-title.php:348
5669
  #: includes/elementor/widgets/theme-elements/site-title.php:414
5670
  #: includes/elementor/widgets/theme-elements/site-title.php:480
@@ -5767,8 +5765,8 @@ msgstr ""
5767
  #: includes/elementor/widgets/carousel-navigation.php:416
5768
  #: includes/elementor/widgets/custom-list.php:785
5769
  #: includes/elementor/widgets/custom-list.php:841
5770
- #: includes/elementor/widgets/theme-elements/logo.php:485
5771
- #: includes/elementor/widgets/theme-elements/logo.php:577
5772
  #: includes/elementor/widgets/theme-elements/site-title.php:314
5773
  #: includes/elementor/widgets/theme-elements/site-title.php:380
5774
  #: includes/elementor/widgets/theme-elements/site-title.php:446
@@ -6029,7 +6027,7 @@ msgstr ""
6029
  #: includes/elementor/widgets/mailchimp.php:376
6030
  #: includes/elementor/widgets/mailchimp.php:644
6031
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:540
6032
- #: includes/elementor/widgets/theme-elements/logo.php:372
6033
  msgid "Transition Duration"
6034
  msgstr ""
6035
 
@@ -6769,7 +6767,7 @@ msgstr "تصویر پس زمینه"
6769
  #: includes/elementor/widgets/testimonial.php:267
6770
  #: includes/elementor/widgets/text.php:117
6771
  #: includes/elementor/widgets/text.php:139
6772
- #: includes/elementor/widgets/theme-elements/logo.php:226
6773
  #: includes/elements/about-widget.php:100 includes/elements/image.php:15
6774
  #: includes/elements/image.php:57 includes/elements/text.php:375
6775
  #: includes/elements/text.php:404
@@ -9094,16 +9092,12 @@ msgstr ""
9094
  msgid "Custom URL"
9095
  msgstr "سی اس اس دلخواه"
9096
 
9097
- #: includes/elementor/widgets/theme-elements/logo.php:212
9098
- msgid "Can Scale"
9099
- msgstr ""
9100
-
9101
- #: includes/elementor/widgets/theme-elements/logo.php:312
9102
- #: includes/elementor/widgets/theme-elements/logo.php:346
9103
  msgid "Opacity"
9104
  msgstr ""
9105
 
9106
- #: includes/elementor/widgets/theme-elements/logo.php:425
9107
  msgid "Scale on sticky"
9108
  msgstr ""
9109
 
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-24 13:58:00+00:00\n"
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
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
2140
  msgid "Preparing Site ..."
2141
  msgstr ""
2142
 
2143
+ #: includes/classes/class-auxin-demo-importer.php:1332
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:546
2353
  #: includes/elements/custom-list.php:138
2354
  #, fuzzy
2355
  msgid "Description"
3116
  msgstr ""
3117
 
3118
  #: includes/elementor/modules/common.php:435
3119
+ #: includes/elementor/widgets/theme-elements/logo.php:425
3120
  msgid "Scale"
3121
  msgstr ""
3122
 
3275
  #: includes/elementor/widgets/mailchimp.php:481
3276
  #: includes/elementor/widgets/mailchimp.php:709
3277
  #: includes/elementor/widgets/svg.php:222
3278
+ #: includes/elementor/widgets/theme-elements/logo.php:257
3279
+ #: includes/elementor/widgets/theme-elements/logo.php:515
3280
+ #: includes/elementor/widgets/theme-elements/logo.php:607
3281
  #: includes/elementor/widgets/theme-elements/shopping-cart.php:419
3282
  #, fuzzy
3283
  msgid "Max Width"
3697
  #: includes/elementor/widgets/tabs.php:373
3698
  #: includes/elementor/widgets/text.php:232
3699
  #: includes/elementor/widgets/text.php:680
3700
+ #: includes/elementor/widgets/theme-elements/logo.php:454
3701
  #: includes/elementor/widgets/theme-elements/site-title.php:94
3702
  #: includes/elementor/widgets/touch-slider.php:332
3703
  #: includes/elements/about-widget.php:43
4526
  #: includes/elementor/widgets/tabs.php:480
4527
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:240
4528
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:373
4529
+ #: includes/elementor/widgets/theme-elements/logo.php:493
4530
+ #: includes/elementor/widgets/theme-elements/logo.php:585
4531
  #: includes/elementor/widgets/theme-elements/menu.php:530
4532
  #: includes/elementor/widgets/theme-elements/menu.php:969
4533
  #: includes/elementor/widgets/theme-elements/menu.php:1328
4568
  #: includes/elementor/widgets/tabs.php:493
4569
  #: includes/elementor/widgets/text.php:1468
4570
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:463
4571
+ #: includes/elementor/widgets/theme-elements/logo.php:390
4572
  #: includes/elementor/widgets/theme-elements/menu.php:421
4573
  #: includes/elementor/widgets/theme-elements/menu.php:498
4574
  #: includes/elementor/widgets/theme-elements/menu.php:705
4660
  #: includes/elementor/widgets/text.php:1484
4661
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:490
4662
  #: includes/elementor/widgets/theme-elements/copyright.php:175
4663
+ #: includes/elementor/widgets/theme-elements/logo.php:293
4664
  #: includes/elementor/widgets/theme-elements/menu.php:359
4665
  #: includes/elementor/widgets/theme-elements/menu.php:680
4666
  #: includes/elementor/widgets/theme-elements/menu.php:796
4910
  #: includes/elementor/widgets/theme-elements/copyright.php:182
4911
  #: includes/elementor/widgets/theme-elements/copyright.php:219
4912
  #: includes/elementor/widgets/theme-elements/current-time.php:172
4913
+ #: includes/elementor/widgets/theme-elements/logo.php:462
4914
+ #: includes/elementor/widgets/theme-elements/logo.php:554
4915
  #: includes/elementor/widgets/theme-elements/menu.php:366
4916
  #: includes/elementor/widgets/theme-elements/menu.php:443
4917
  #: includes/elementor/widgets/theme-elements/menu.php:556
5083
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:128
5084
  #: includes/elementor/widgets/theme-elements/copyright.php:115
5085
  #: includes/elementor/widgets/theme-elements/copyright.php:128
5086
+ #: includes/elementor/widgets/theme-elements/logo.php:415
 
5087
  #: includes/elementor/widgets/theme-elements/menu.php:175
5088
  #: includes/elementor/widgets/theme-elements/menu.php:190
5089
  #: includes/elementor/widgets/theme-elements/modern-search.php:157
5229
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:129
5230
  #: includes/elementor/widgets/theme-elements/copyright.php:116
5231
  #: includes/elementor/widgets/theme-elements/copyright.php:129
5232
+ #: includes/elementor/widgets/theme-elements/logo.php:416
 
5233
  #: includes/elementor/widgets/theme-elements/menu.php:176
5234
  #: includes/elementor/widgets/theme-elements/menu.php:191
5235
  #: includes/elementor/widgets/theme-elements/modern-search.php:158
5361
  #: includes/elementor/widgets/svg.php:162
5362
  #: includes/elementor/widgets/testimonial.php:284
5363
  #: includes/elementor/widgets/testimonial.php:855
5364
+ #: includes/elementor/widgets/theme-elements/logo.php:222
5365
  #: includes/elementor/widgets/theme-elements/search.php:289
5366
  #: includes/elementor/widgets/video.php:191
5367
  #: includes/elements/before-after.php:115 includes/elements/image.php:109
5661
  #: includes/elementor/widgets/text.php:1263
5662
  #: includes/elementor/widgets/text.php:1301
5663
  #: includes/elementor/widgets/theme-elements/current-time.php:184
5664
+ #: includes/elementor/widgets/theme-elements/logo.php:507
5665
+ #: includes/elementor/widgets/theme-elements/logo.php:599
5666
  #: includes/elementor/widgets/theme-elements/site-title.php:348
5667
  #: includes/elementor/widgets/theme-elements/site-title.php:414
5668
  #: includes/elementor/widgets/theme-elements/site-title.php:480
5765
  #: includes/elementor/widgets/carousel-navigation.php:416
5766
  #: includes/elementor/widgets/custom-list.php:785
5767
  #: includes/elementor/widgets/custom-list.php:841
5768
+ #: includes/elementor/widgets/theme-elements/logo.php:473
5769
+ #: includes/elementor/widgets/theme-elements/logo.php:565
5770
  #: includes/elementor/widgets/theme-elements/site-title.php:314
5771
  #: includes/elementor/widgets/theme-elements/site-title.php:380
5772
  #: includes/elementor/widgets/theme-elements/site-title.php:446
6027
  #: includes/elementor/widgets/mailchimp.php:376
6028
  #: includes/elementor/widgets/mailchimp.php:644
6029
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:540
6030
+ #: includes/elementor/widgets/theme-elements/logo.php:360
6031
  msgid "Transition Duration"
6032
  msgstr ""
6033
 
6767
  #: includes/elementor/widgets/testimonial.php:267
6768
  #: includes/elementor/widgets/text.php:117
6769
  #: includes/elementor/widgets/text.php:139
6770
+ #: includes/elementor/widgets/theme-elements/logo.php:214
6771
  #: includes/elements/about-widget.php:100 includes/elements/image.php:15
6772
  #: includes/elements/image.php:57 includes/elements/text.php:375
6773
  #: includes/elements/text.php:404
9092
  msgid "Custom URL"
9093
  msgstr "سی اس اس دلخواه"
9094
 
9095
+ #: includes/elementor/widgets/theme-elements/logo.php:300
9096
+ #: includes/elementor/widgets/theme-elements/logo.php:334
 
 
 
 
9097
  msgid "Opacity"
9098
  msgstr ""
9099
 
9100
+ #: includes/elementor/widgets/theme-elements/logo.php:413
9101
  msgid "Scale on sticky"
9102
  msgstr ""
9103
 
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.7.0\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
- "POT-Creation-Date: 2020-10-20 11:18:04+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
@@ -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: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
@@ -1999,7 +1999,7 @@ msgstr ""
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,7 +2198,7 @@ msgstr ""
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 ""
@@ -2921,7 +2921,7 @@ msgid "Fade In For Y"
2921
  msgstr ""
2922
 
2923
  #: includes/elementor/modules/common.php:435
2924
- #: includes/elementor/widgets/theme-elements/logo.php:437
2925
  msgid "Scale"
2926
  msgstr ""
2927
 
@@ -3071,9 +3071,9 @@ msgstr ""
3071
  #: includes/elementor/widgets/mailchimp.php:481
3072
  #: includes/elementor/widgets/mailchimp.php:709
3073
  #: includes/elementor/widgets/svg.php:222
3074
- #: includes/elementor/widgets/theme-elements/logo.php:269
3075
- #: includes/elementor/widgets/theme-elements/logo.php:527
3076
- #: includes/elementor/widgets/theme-elements/logo.php:619
3077
  #: includes/elementor/widgets/theme-elements/shopping-cart.php:419
3078
  msgid "Max Width"
3079
  msgstr ""
@@ -3462,7 +3462,7 @@ msgstr ""
3462
  #: includes/elementor/widgets/tabs.php:373
3463
  #: includes/elementor/widgets/text.php:232
3464
  #: includes/elementor/widgets/text.php:680
3465
- #: includes/elementor/widgets/theme-elements/logo.php:466
3466
  #: includes/elementor/widgets/theme-elements/site-title.php:94
3467
  #: includes/elementor/widgets/touch-slider.php:332
3468
  #: includes/elements/about-widget.php:43
@@ -4231,8 +4231,8 @@ msgstr ""
4231
  #: includes/elementor/widgets/tabs.php:480
4232
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:240
4233
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:373
4234
- #: includes/elementor/widgets/theme-elements/logo.php:505
4235
- #: includes/elementor/widgets/theme-elements/logo.php:597
4236
  #: includes/elementor/widgets/theme-elements/menu.php:530
4237
  #: includes/elementor/widgets/theme-elements/menu.php:969
4238
  #: includes/elementor/widgets/theme-elements/menu.php:1328
@@ -4273,7 +4273,7 @@ msgstr ""
4273
  #: includes/elementor/widgets/tabs.php:493
4274
  #: includes/elementor/widgets/text.php:1468
4275
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:463
4276
- #: includes/elementor/widgets/theme-elements/logo.php:402
4277
  #: includes/elementor/widgets/theme-elements/menu.php:421
4278
  #: includes/elementor/widgets/theme-elements/menu.php:498
4279
  #: includes/elementor/widgets/theme-elements/menu.php:705
@@ -4364,7 +4364,7 @@ msgstr ""
4364
  #: includes/elementor/widgets/text.php:1484
4365
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:490
4366
  #: includes/elementor/widgets/theme-elements/copyright.php:175
4367
- #: includes/elementor/widgets/theme-elements/logo.php:305
4368
  #: includes/elementor/widgets/theme-elements/menu.php:359
4369
  #: includes/elementor/widgets/theme-elements/menu.php:680
4370
  #: includes/elementor/widgets/theme-elements/menu.php:796
@@ -4611,8 +4611,8 @@ msgstr ""
4611
  #: includes/elementor/widgets/theme-elements/copyright.php:182
4612
  #: includes/elementor/widgets/theme-elements/copyright.php:219
4613
  #: includes/elementor/widgets/theme-elements/current-time.php:172
4614
- #: includes/elementor/widgets/theme-elements/logo.php:474
4615
- #: includes/elementor/widgets/theme-elements/logo.php:566
4616
  #: includes/elementor/widgets/theme-elements/menu.php:366
4617
  #: includes/elementor/widgets/theme-elements/menu.php:443
4618
  #: includes/elementor/widgets/theme-elements/menu.php:556
@@ -4782,8 +4782,7 @@ msgstr ""
4782
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:128
4783
  #: includes/elementor/widgets/theme-elements/copyright.php:115
4784
  #: includes/elementor/widgets/theme-elements/copyright.php:128
4785
- #: includes/elementor/widgets/theme-elements/logo.php:214
4786
- #: includes/elementor/widgets/theme-elements/logo.php:427
4787
  #: includes/elementor/widgets/theme-elements/menu.php:175
4788
  #: includes/elementor/widgets/theme-elements/menu.php:190
4789
  #: includes/elementor/widgets/theme-elements/modern-search.php:157
@@ -4929,8 +4928,7 @@ msgstr ""
4929
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:129
4930
  #: includes/elementor/widgets/theme-elements/copyright.php:116
4931
  #: includes/elementor/widgets/theme-elements/copyright.php:129
4932
- #: includes/elementor/widgets/theme-elements/logo.php:215
4933
- #: includes/elementor/widgets/theme-elements/logo.php:428
4934
  #: includes/elementor/widgets/theme-elements/menu.php:176
4935
  #: includes/elementor/widgets/theme-elements/menu.php:191
4936
  #: includes/elementor/widgets/theme-elements/modern-search.php:158
@@ -5060,7 +5058,7 @@ msgstr ""
5060
  #: includes/elementor/widgets/svg.php:162
5061
  #: includes/elementor/widgets/testimonial.php:284
5062
  #: includes/elementor/widgets/testimonial.php:855
5063
- #: includes/elementor/widgets/theme-elements/logo.php:234
5064
  #: includes/elementor/widgets/theme-elements/search.php:289
5065
  #: includes/elementor/widgets/video.php:191
5066
  #: includes/elements/before-after.php:115 includes/elements/image.php:109
@@ -5352,8 +5350,8 @@ msgstr ""
5352
  #: includes/elementor/widgets/text.php:1263
5353
  #: includes/elementor/widgets/text.php:1301
5354
  #: includes/elementor/widgets/theme-elements/current-time.php:184
5355
- #: includes/elementor/widgets/theme-elements/logo.php:519
5356
- #: includes/elementor/widgets/theme-elements/logo.php:611
5357
  #: includes/elementor/widgets/theme-elements/site-title.php:348
5358
  #: includes/elementor/widgets/theme-elements/site-title.php:414
5359
  #: includes/elementor/widgets/theme-elements/site-title.php:480
@@ -5446,8 +5444,8 @@ msgstr ""
5446
  #: includes/elementor/widgets/carousel-navigation.php:416
5447
  #: includes/elementor/widgets/custom-list.php:785
5448
  #: includes/elementor/widgets/custom-list.php:841
5449
- #: includes/elementor/widgets/theme-elements/logo.php:485
5450
- #: includes/elementor/widgets/theme-elements/logo.php:577
5451
  #: includes/elementor/widgets/theme-elements/site-title.php:314
5452
  #: includes/elementor/widgets/theme-elements/site-title.php:380
5453
  #: includes/elementor/widgets/theme-elements/site-title.php:446
@@ -5694,7 +5692,7 @@ msgstr ""
5694
  #: includes/elementor/widgets/mailchimp.php:376
5695
  #: includes/elementor/widgets/mailchimp.php:644
5696
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:540
5697
- #: includes/elementor/widgets/theme-elements/logo.php:372
5698
  msgid "Transition Duration"
5699
  msgstr ""
5700
 
@@ -6384,7 +6382,7 @@ msgstr ""
6384
  #: includes/elementor/widgets/testimonial.php:267
6385
  #: includes/elementor/widgets/text.php:117
6386
  #: includes/elementor/widgets/text.php:139
6387
- #: includes/elementor/widgets/theme-elements/logo.php:226
6388
  #: includes/elements/about-widget.php:100 includes/elements/image.php:15
6389
  #: includes/elements/image.php:57 includes/elements/text.php:375
6390
  #: includes/elements/text.php:404
@@ -8553,16 +8551,12 @@ msgstr ""
8553
  msgid "Custom URL"
8554
  msgstr ""
8555
 
8556
- #: includes/elementor/widgets/theme-elements/logo.php:212
8557
- msgid "Can Scale"
8558
- msgstr ""
8559
-
8560
- #: includes/elementor/widgets/theme-elements/logo.php:312
8561
- #: includes/elementor/widgets/theme-elements/logo.php:346
8562
  msgid "Opacity"
8563
  msgstr ""
8564
 
8565
- #: includes/elementor/widgets/theme-elements/logo.php:425
8566
  msgid "Scale on sticky"
8567
  msgstr ""
8568
 
1
  # Averta Copyright (c) {2020}
2
  msgid ""
3
  msgstr ""
4
+ "Project-Id-Version: Phlox Core Elements 2.7.1\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
+ "POT-Creation-Date: 2020-10-24 13:58: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"
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
1999
  msgid "Preparing Site ..."
2000
  msgstr ""
2001
 
2002
+ #: includes/classes/class-auxin-demo-importer.php:1332
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:546
2202
  #: includes/elements/custom-list.php:138
2203
  msgid "Description"
2204
  msgstr ""
2921
  msgstr ""
2922
 
2923
  #: includes/elementor/modules/common.php:435
2924
+ #: includes/elementor/widgets/theme-elements/logo.php:425
2925
  msgid "Scale"
2926
  msgstr ""
2927
 
3071
  #: includes/elementor/widgets/mailchimp.php:481
3072
  #: includes/elementor/widgets/mailchimp.php:709
3073
  #: includes/elementor/widgets/svg.php:222
3074
+ #: includes/elementor/widgets/theme-elements/logo.php:257
3075
+ #: includes/elementor/widgets/theme-elements/logo.php:515
3076
+ #: includes/elementor/widgets/theme-elements/logo.php:607
3077
  #: includes/elementor/widgets/theme-elements/shopping-cart.php:419
3078
  msgid "Max Width"
3079
  msgstr ""
3462
  #: includes/elementor/widgets/tabs.php:373
3463
  #: includes/elementor/widgets/text.php:232
3464
  #: includes/elementor/widgets/text.php:680
3465
+ #: includes/elementor/widgets/theme-elements/logo.php:454
3466
  #: includes/elementor/widgets/theme-elements/site-title.php:94
3467
  #: includes/elementor/widgets/touch-slider.php:332
3468
  #: includes/elements/about-widget.php:43
4231
  #: includes/elementor/widgets/tabs.php:480
4232
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:240
4233
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:373
4234
+ #: includes/elementor/widgets/theme-elements/logo.php:493
4235
+ #: includes/elementor/widgets/theme-elements/logo.php:585
4236
  #: includes/elementor/widgets/theme-elements/menu.php:530
4237
  #: includes/elementor/widgets/theme-elements/menu.php:969
4238
  #: includes/elementor/widgets/theme-elements/menu.php:1328
4273
  #: includes/elementor/widgets/tabs.php:493
4274
  #: includes/elementor/widgets/text.php:1468
4275
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:463
4276
+ #: includes/elementor/widgets/theme-elements/logo.php:390
4277
  #: includes/elementor/widgets/theme-elements/menu.php:421
4278
  #: includes/elementor/widgets/theme-elements/menu.php:498
4279
  #: includes/elementor/widgets/theme-elements/menu.php:705
4364
  #: includes/elementor/widgets/text.php:1484
4365
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:490
4366
  #: includes/elementor/widgets/theme-elements/copyright.php:175
4367
+ #: includes/elementor/widgets/theme-elements/logo.php:293
4368
  #: includes/elementor/widgets/theme-elements/menu.php:359
4369
  #: includes/elementor/widgets/theme-elements/menu.php:680
4370
  #: includes/elementor/widgets/theme-elements/menu.php:796
4611
  #: includes/elementor/widgets/theme-elements/copyright.php:182
4612
  #: includes/elementor/widgets/theme-elements/copyright.php:219
4613
  #: includes/elementor/widgets/theme-elements/current-time.php:172
4614
+ #: includes/elementor/widgets/theme-elements/logo.php:462
4615
+ #: includes/elementor/widgets/theme-elements/logo.php:554
4616
  #: includes/elementor/widgets/theme-elements/menu.php:366
4617
  #: includes/elementor/widgets/theme-elements/menu.php:443
4618
  #: includes/elementor/widgets/theme-elements/menu.php:556
4782
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:128
4783
  #: includes/elementor/widgets/theme-elements/copyright.php:115
4784
  #: includes/elementor/widgets/theme-elements/copyright.php:128
4785
+ #: includes/elementor/widgets/theme-elements/logo.php:415
 
4786
  #: includes/elementor/widgets/theme-elements/menu.php:175
4787
  #: includes/elementor/widgets/theme-elements/menu.php:190
4788
  #: includes/elementor/widgets/theme-elements/modern-search.php:157
4928
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:129
4929
  #: includes/elementor/widgets/theme-elements/copyright.php:116
4930
  #: includes/elementor/widgets/theme-elements/copyright.php:129
4931
+ #: includes/elementor/widgets/theme-elements/logo.php:416
 
4932
  #: includes/elementor/widgets/theme-elements/menu.php:176
4933
  #: includes/elementor/widgets/theme-elements/menu.php:191
4934
  #: includes/elementor/widgets/theme-elements/modern-search.php:158
5058
  #: includes/elementor/widgets/svg.php:162
5059
  #: includes/elementor/widgets/testimonial.php:284
5060
  #: includes/elementor/widgets/testimonial.php:855
5061
+ #: includes/elementor/widgets/theme-elements/logo.php:222
5062
  #: includes/elementor/widgets/theme-elements/search.php:289
5063
  #: includes/elementor/widgets/video.php:191
5064
  #: includes/elements/before-after.php:115 includes/elements/image.php:109
5350
  #: includes/elementor/widgets/text.php:1263
5351
  #: includes/elementor/widgets/text.php:1301
5352
  #: includes/elementor/widgets/theme-elements/current-time.php:184
5353
+ #: includes/elementor/widgets/theme-elements/logo.php:507
5354
+ #: includes/elementor/widgets/theme-elements/logo.php:599
5355
  #: includes/elementor/widgets/theme-elements/site-title.php:348
5356
  #: includes/elementor/widgets/theme-elements/site-title.php:414
5357
  #: includes/elementor/widgets/theme-elements/site-title.php:480
5444
  #: includes/elementor/widgets/carousel-navigation.php:416
5445
  #: includes/elementor/widgets/custom-list.php:785
5446
  #: includes/elementor/widgets/custom-list.php:841
5447
+ #: includes/elementor/widgets/theme-elements/logo.php:473
5448
+ #: includes/elementor/widgets/theme-elements/logo.php:565
5449
  #: includes/elementor/widgets/theme-elements/site-title.php:314
5450
  #: includes/elementor/widgets/theme-elements/site-title.php:380
5451
  #: includes/elementor/widgets/theme-elements/site-title.php:446
5692
  #: includes/elementor/widgets/mailchimp.php:376
5693
  #: includes/elementor/widgets/mailchimp.php:644
5694
  #: includes/elementor/widgets/theme-elements/breadcrumbs.php:540
5695
+ #: includes/elementor/widgets/theme-elements/logo.php:360
5696
  msgid "Transition Duration"
5697
  msgstr ""
5698
 
6382
  #: includes/elementor/widgets/testimonial.php:267
6383
  #: includes/elementor/widgets/text.php:117
6384
  #: includes/elementor/widgets/text.php:139
6385
+ #: includes/elementor/widgets/theme-elements/logo.php:214
6386
  #: includes/elements/about-widget.php:100 includes/elements/image.php:15
6387
  #: includes/elements/image.php:57 includes/elements/text.php:375
6388
  #: includes/elements/text.php:404
8551
  msgid "Custom URL"
8552
  msgstr ""
8553
 
8554
+ #: includes/elementor/widgets/theme-elements/logo.php:300
8555
+ #: includes/elementor/widgets/theme-elements/logo.php:334
 
 
 
 
8556
  msgid "Opacity"
8557
  msgstr ""
8558
 
8559
+ #: includes/elementor/widgets/theme-elements/logo.php:413
8560
  msgid "Scale on sticky"
8561
  msgstr ""
8562
 
public/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.7.0 (2020-10)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */
1
+ /*! Phlox Core Plugin - v2.7.1 (2020-10)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */