Header Footer Elementor - Version 1.6.2

Version Description

  • Improvement: Copyright - Added custom link attributes support.
  • Improvement: Page Title - Added custom link attributes support.
  • Improvement: Retina Image - Added custom link attributes support.
  • Improvement: Search - Added gradient color support to the search button.
  • Improvement: Site Logo - Added custom link attributes support.
  • Improvement: Site Title - Added custom link attributes support.
  • Fix: Templates views section not displaying correctly and related code conflicting with Yoast SEO plugin.
  • Fix: Widgets icon color issue with Elementor's dark mode.
Download this release

Release Info

Developer Nikschavan
Plugin Icon Header Footer Elementor
Version 1.6.2
Comparing to
See all releases

Code changes from version 1.6.1 to 1.6.2

assets/css/style.css CHANGED
@@ -42,7 +42,6 @@
42
 
43
  .hfe-icon-search:before {
44
  content: "\e908";
45
- color: #556068;
46
  }
47
  .hfe-icon-site-logo:before {
48
  content: "\e900";
@@ -58,11 +57,9 @@
58
  }
59
  .hfe-icon-navigation-menu:before {
60
  content: "\e904";
61
- color: #556068;
62
  }
63
  .hfe-icon-menu-cart:before {
64
  content: "\e905";
65
- color: #556068;
66
  }
67
  .hfe-icon-copyright-widget:before {
68
  content: "\e906";
42
 
43
  .hfe-icon-search:before {
44
  content: "\e908";
 
45
  }
46
  .hfe-icon-site-logo:before {
47
  content: "\e900";
57
  }
58
  .hfe-icon-navigation-menu:before {
59
  content: "\e904";
 
60
  }
61
  .hfe-icon-menu-cart:before {
62
  content: "\e905";
 
63
  }
64
  .hfe-icon-copyright-widget:before {
65
  content: "\e906";
header-footer-elementor.php CHANGED
@@ -7,14 +7,14 @@
7
  * Author URI: https://www.brainstormforce.com/
8
  * Text Domain: header-footer-elementor
9
  * Domain Path: /languages
10
- * Version: 1.6.1
11
  * Elementor tested up to: 3.2.5
12
  * Elementor Pro tested up to: 3.3.1
13
  *
14
  * @package header-footer-elementor
15
  */
16
 
17
- define( 'HFE_VER', '1.6.1' );
18
  define( 'HFE_FILE', __FILE__ );
19
  define( 'HFE_DIR', plugin_dir_path( __FILE__ ) );
20
  define( 'HFE_URL', plugins_url( '/', __FILE__ ) );
7
  * Author URI: https://www.brainstormforce.com/
8
  * Text Domain: header-footer-elementor
9
  * Domain Path: /languages
10
+ * Version: 1.6.2
11
  * Elementor tested up to: 3.2.5
12
  * Elementor Pro tested up to: 3.3.1
13
  *
14
  * @package header-footer-elementor
15
  */
16
 
17
+ define( 'HFE_VER', '1.6.2' );
18
  define( 'HFE_FILE', __FILE__ );
19
  define( 'HFE_DIR', plugin_dir_path( __FILE__ ) );
20
  define( 'HFE_URL', plugins_url( '/', __FILE__ ) );
inc/class-hfe-settings-page.php CHANGED
@@ -99,18 +99,9 @@ class HFE_Settings_Page {
99
  public function hfe_settings( $views ) {
100
 
101
  $this->hfe_tabs();
102
- $is_dismissed = [];
103
- $is_dismissed = get_user_meta( get_current_user_id(), 'hfe-popup' );
104
-
105
- $is_subscribed = get_user_meta( get_current_user_ID(), 'hfe-subscribed' );
106
- $subscribe_valid = ( is_array( $is_subscribed ) && isset( $is_subscribed[0] ) && 'yes' === $is_subscribed[0] ) ? 'yes' : false;
107
-
108
- if ( ( ! empty( $is_dismissed ) && 'dismissed' === $is_dismissed[0] ) || 'yes' === $subscribe_valid ) {
109
- return false;
110
- } else {
111
- $this->get_guide_modal();
112
- }
113
  return $views;
 
114
  }
115
 
116
  /**
@@ -239,6 +230,27 @@ class HFE_Settings_Page {
239
  }
240
  }
241
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
242
  /**
243
  * Function for adding tabs
244
  *
99
  public function hfe_settings( $views ) {
100
 
101
  $this->hfe_tabs();
102
+ $this->hfe_modal();
 
 
 
 
 
 
 
 
 
 
103
  return $views;
104
+
105
  }
106
 
107
  /**
230
  }
231
  }
232
 
233
+ /**
234
+ * Settings page - load modal content.
235
+ *
236
+ * Call back function for add submenu page function.
237
+ *
238
+ * @since 1.6.2
239
+ */
240
+ public function hfe_modal() {
241
+ $is_dismissed = [];
242
+ $is_dismissed = get_user_meta( get_current_user_id(), 'hfe-popup' );
243
+
244
+ $is_subscribed = get_user_meta( get_current_user_ID(), 'hfe-subscribed' );
245
+ $subscribe_valid = ( is_array( $is_subscribed ) && isset( $is_subscribed[0] ) && 'yes' === $is_subscribed[0] ) ? 'yes' : false;
246
+
247
+ if ( ( ! empty( $is_dismissed ) && 'dismissed' === $is_dismissed[0] ) || 'yes' === $subscribe_valid ) {
248
+ return false;
249
+ } else {
250
+ $this->get_guide_modal();
251
+ }
252
+ }
253
+
254
  /**
255
  * Function for adding tabs
256
  *
inc/widgets-manager/widgets/class-copyright.php CHANGED
@@ -200,17 +200,14 @@ class Copyright extends Widget_Base {
200
  $settings = $this->get_settings_for_display();
201
  $link = isset( $settings['link']['url'] ) ? $settings['link']['url'] : '';
202
 
203
- if ( ! empty( $settings['link']['nofollow'] ) ) {
204
- $this->add_render_attribute( 'link', 'rel', 'nofollow' );
205
- }
206
- if ( ! empty( $settings['link']['is_external'] ) ) {
207
- $this->add_render_attribute( 'link', 'target', '_blank' );
208
  }
209
 
210
  $copy_right_shortcode = do_shortcode( shortcode_unautop( $settings['shortcode'] ) ); ?>
211
  <div class="hfe-copyright-wrapper">
212
  <?php if ( ! empty( $link ) ) { ?>
213
- <a href="<?php echo esc_url( $link ); ?>" <?php echo $this->get_render_attribute_string( 'link' ); ?>>
214
  <span><?php echo wp_kses_post( $copy_right_shortcode ); ?></span>
215
  </a>
216
  <?php } else { ?>
200
  $settings = $this->get_settings_for_display();
201
  $link = isset( $settings['link']['url'] ) ? $settings['link']['url'] : '';
202
 
203
+ if ( ! empty( $link ) ) {
204
+ $this->add_link_attributes( 'link', $settings['link'] );
 
 
 
205
  }
206
 
207
  $copy_right_shortcode = do_shortcode( shortcode_unautop( $settings['shortcode'] ) ); ?>
208
  <div class="hfe-copyright-wrapper">
209
  <?php if ( ! empty( $link ) ) { ?>
210
+ <a <?php echo wp_kses_post( $this->get_render_attribute_string( 'link' ) ); ?>>
211
  <span><?php echo wp_kses_post( $copy_right_shortcode ); ?></span>
212
  </a>
213
  <?php } else { ?>
inc/widgets-manager/widgets/class-page-title.php CHANGED
@@ -421,16 +421,7 @@ class Page_Title extends Widget_Base {
421
  $this->add_inline_editing_attributes( 'page_title', 'basic' );
422
 
423
  if ( ! empty( $settings['page_heading_link']['url'] ) ) {
424
- $this->add_render_attribute( 'url', 'href', $settings['page_heading_link']['url'] );
425
-
426
- if ( $settings['page_heading_link']['is_external'] ) {
427
- $this->add_render_attribute( 'url', 'target', '_blank' );
428
- }
429
-
430
- if ( ! empty( $settings['page_heading_link']['nofollow'] ) ) {
431
- $this->add_render_attribute( 'url', 'rel', 'nofollow' );
432
- }
433
- $link = $this->get_render_attribute_string( 'url' );
434
  }
435
 
436
  $heading_size_tag = Widgets_Loader::validate_html_tag( $settings['heading_tag'] );
@@ -442,7 +433,7 @@ class Page_Title extends Widget_Base {
442
  $head_custom_link = isset( $settings['page_custom_link'] ) ? $settings['page_custom_link'] : '';
443
  ?>
444
  <?php if ( '' != $head_link_url && 'custom' === $head_custom_link ) { ?>
445
- <a <?php echo $link; ?> >
446
  <?php } elseif ( 'default' === $head_custom_link ) { ?>
447
  <a href="<?php echo esc_url( get_home_url() ); ?>">
448
  <?php } ?>
421
  $this->add_inline_editing_attributes( 'page_title', 'basic' );
422
 
423
  if ( ! empty( $settings['page_heading_link']['url'] ) ) {
424
+ $this->add_link_attributes( 'url', $settings['page_heading_link'] );
 
 
 
 
 
 
 
 
 
425
  }
426
 
427
  $heading_size_tag = Widgets_Loader::validate_html_tag( $settings['heading_tag'] );
433
  $head_custom_link = isset( $settings['page_custom_link'] ) ? $settings['page_custom_link'] : '';
434
  ?>
435
  <?php if ( '' != $head_link_url && 'custom' === $head_custom_link ) { ?>
436
+ <a <?php echo wp_kses_post( $this->get_render_attribute_string( 'url' ) ); ?>>
437
  <?php } elseif ( 'default' === $head_custom_link ) { ?>
438
  <a href="<?php echo esc_url( get_home_url() ); ?>">
439
  <?php } ?>
inc/widgets-manager/widgets/class-retina.php CHANGED
@@ -695,12 +695,6 @@ class Retina extends Widget_Base {
695
  $link = $this->get_link_url( $settings );
696
 
697
  if ( $link ) {
698
- $this->add_render_attribute(
699
- 'link',
700
- [
701
- 'href' => $link['url'],
702
- ]
703
- );
704
 
705
  if ( Plugin::$instance->editor->is_edit_mode() ) {
706
  $this->add_render_attribute(
@@ -711,13 +705,7 @@ class Retina extends Widget_Base {
711
  );
712
  }
713
 
714
- if ( ! empty( $link['is_external'] ) ) {
715
- $this->add_render_attribute( 'link', 'target', '_blank' );
716
- }
717
-
718
- if ( ! empty( $link['nofollow'] ) ) {
719
- $this->add_render_attribute( 'link', 'rel', 'nofollow' );
720
- }
721
  }
722
 
723
  ?>
695
  $link = $this->get_link_url( $settings );
696
 
697
  if ( $link ) {
 
 
 
 
 
 
698
 
699
  if ( Plugin::$instance->editor->is_edit_mode() ) {
700
  $this->add_render_attribute(
705
  );
706
  }
707
 
708
+ $this->add_link_attributes( 'link', $link );
 
 
 
 
 
 
709
  }
710
 
711
  ?>
inc/widgets-manager/widgets/class-search-button.php CHANGED
@@ -664,14 +664,21 @@ class Search_Button extends Widget_Base {
664
  ]
665
  );
666
 
667
- $this->add_control(
668
- 'button_background_color',
669
  [
670
- 'label' => __( 'Background Color', 'header-footer-elementor' ),
671
- 'type' => Controls_Manager::COLOR,
672
- 'default' => '#818a91',
673
- 'selectors' => [
674
- '{{WRAPPER}} .hfe-search-submit' => 'background-color: {{VALUE}}',
 
 
 
 
 
 
 
675
  ],
676
  ]
677
  );
@@ -688,7 +695,7 @@ class Search_Button extends Widget_Base {
688
  $this->add_control(
689
  'button_text_color_hover',
690
  [
691
- 'label' => __( 'Text Color', 'header-footer-elementor' ),
692
  'type' => Controls_Manager::COLOR,
693
  'selectors' => [
694
  '{{WRAPPER}} .hfe-search-submit:hover' => 'color: {{VALUE}}',
@@ -704,6 +711,23 @@ class Search_Button extends Widget_Base {
704
  'selectors' => [
705
  '{{WRAPPER}} .hfe-search-submit:hover' => 'background-color: {{VALUE}}',
706
  ],
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
707
  ]
708
  );
709
 
664
  ]
665
  );
666
 
667
+ $this->add_group_control(
668
+ Group_Control_Background::get_type(),
669
  [
670
+ 'name' => 'button_background',
671
+ 'label' => __( 'Background', 'header-footer-elementor' ),
672
+ 'types' => [ 'classic', 'gradient' ],
673
+ 'exclude' => [ 'image' ],
674
+ 'selector' => '{{WRAPPER}} .hfe-search-submit',
675
+ 'fields_options' => [
676
+ 'background' => [
677
+ 'default' => 'classic',
678
+ ],
679
+ 'color' => [
680
+ 'default' => '#818a91',
681
+ ],
682
  ],
683
  ]
684
  );
695
  $this->add_control(
696
  'button_text_color_hover',
697
  [
698
+ 'label' => __( 'Icon Color', 'header-footer-elementor' ),
699
  'type' => Controls_Manager::COLOR,
700
  'selectors' => [
701
  '{{WRAPPER}} .hfe-search-submit:hover' => 'color: {{VALUE}}',
711
  'selectors' => [
712
  '{{WRAPPER}} .hfe-search-submit:hover' => 'background-color: {{VALUE}}',
713
  ],
714
+ 'condition' => [
715
+ 'button_background_color_hover!' => '',
716
+ ],
717
+ ]
718
+ );
719
+
720
+ $this->add_group_control(
721
+ Group_Control_Background::get_type(),
722
+ [
723
+ 'name' => 'button_background_hover',
724
+ 'label' => __( 'Background', 'header-footer-elementor' ),
725
+ 'types' => [ 'classic', 'gradient' ],
726
+ 'exclude' => [ 'image' ],
727
+ 'selector' => '{{WRAPPER}} .hfe-search-submit:hover',
728
+ 'condition' => [
729
+ 'button_background_color_hover' => '',
730
+ ],
731
  ]
732
  );
733
 
inc/widgets-manager/widgets/class-site-logo.php CHANGED
@@ -714,6 +714,7 @@ class Site_Logo extends Widget_Base {
714
  * @access protected
715
  */
716
  protected function render() {
 
717
  $settings = $this->get_settings_for_display();
718
 
719
  $has_caption = $this->has_caption( $settings );
@@ -737,14 +738,10 @@ class Site_Logo extends Widget_Base {
737
  $link = site_url();
738
  $this->add_render_attribute( 'link', 'href', $link );
739
  } else {
740
- $link = $this->get_link_url( $settings );
741
- $link_url = isset( $link['url'] ) ? $link['url'] : '';
742
- $this->add_render_attribute( 'link', 'href', $link_url );
743
- if ( ! empty( $link['nofollow'] ) ) {
744
- $this->add_render_attribute( 'link', 'rel', 'nofollow' );
745
- }
746
- if ( ! empty( $link['is_external'] ) ) {
747
- $this->add_render_attribute( 'link', 'target', '_blank' );
748
  }
749
  }
750
  $class = '';
714
  * @access protected
715
  */
716
  protected function render() {
717
+ $link = '';
718
  $settings = $this->get_settings_for_display();
719
 
720
  $has_caption = $this->has_caption( $settings );
738
  $link = site_url();
739
  $this->add_render_attribute( 'link', 'href', $link );
740
  } else {
741
+ $link = $this->get_link_url( $settings );
742
+
743
+ if ( $link ) {
744
+ $this->add_link_attributes( 'link', $link );
 
 
 
 
745
  }
746
  }
747
  $class = '';
inc/widgets-manager/widgets/class-site-title.php CHANGED
@@ -414,16 +414,7 @@ class Site_Title extends Widget_Base {
414
  }
415
 
416
  if ( ! empty( $settings['heading_link']['url'] ) ) {
417
- $this->add_render_attribute( 'url', 'href', $settings['heading_link']['url'] );
418
-
419
- if ( $settings['heading_link']['is_external'] ) {
420
- $this->add_render_attribute( 'url', 'target', '_blank' );
421
- }
422
-
423
- if ( ! empty( $settings['heading_link']['nofollow'] ) ) {
424
- $this->add_render_attribute( 'url', 'rel', 'nofollow' );
425
- }
426
- $link = $this->get_render_attribute_string( 'url' );
427
  }
428
 
429
  $heading_size_tag = Widgets_Loader::validate_html_tag( $settings['heading_tag'] );
@@ -431,7 +422,7 @@ class Site_Title extends Widget_Base {
431
 
432
  <div class="hfe-module-content hfe-heading-wrapper elementor-widget-heading">
433
  <?php if ( ! empty( $settings['heading_link']['url'] ) && 'custom' === $settings['custom_link'] ) { ?>
434
- <a <?php echo $link; ?> >
435
  <?php } else { ?>
436
  <a href="<?php echo get_home_url(); ?>">
437
  <?php } ?>
414
  }
415
 
416
  if ( ! empty( $settings['heading_link']['url'] ) ) {
417
+ $this->add_link_attributes( 'url', $settings['heading_link'] );
 
 
 
 
 
 
 
 
 
418
  }
419
 
420
  $heading_size_tag = Widgets_Loader::validate_html_tag( $settings['heading_tag'] );
422
 
423
  <div class="hfe-module-content hfe-heading-wrapper elementor-widget-heading">
424
  <?php if ( ! empty( $settings['heading_link']['url'] ) && 'custom' === $settings['custom_link'] ) { ?>
425
+ <a <?php echo wp_kses_post( $this->get_render_attribute_string( 'url' ) ); ?>>
426
  <?php } else { ?>
427
  <a href="<?php echo get_home_url(); ?>">
428
  <?php } ?>
languages/header-footer-elementor.pot CHANGED
@@ -2,10 +2,10 @@
2
  # This file is distributed under the same license as the Elementor Header & Footer Builder package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Elementor Header & Footer Builder 1.6.0\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/header-footer-elementor\n"
8
- "POT-Creation-Date: 2021-06-21 16:23:04+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -122,7 +122,7 @@ msgstr ""
122
  msgid "View Template"
123
  msgstr ""
124
 
125
- #: admin/class-hfe-admin.php:229 inc/class-hfe-settings-page.php:273
126
  msgid "All Templates"
127
  msgstr ""
128
 
@@ -240,133 +240,133 @@ msgstr ""
240
  msgid "Template %1$s is already assigned to the location %2$s"
241
  msgstr ""
242
 
243
- #: inc/class-header-footer-elementor.php:177
244
  msgid ""
245
  "Hello! Seems like you have used Elementor Header & Footer Builder to build "
246
  "this website — Thanks a ton!"
247
  msgstr ""
248
 
249
- #: inc/class-header-footer-elementor.php:178
250
  msgid ""
251
  "Could you please do us a BIG favor and give it a 5-star rating on "
252
  "WordPress? This would boost our motivation and help other users make a "
253
  "comfortable decision while choosing the Elementor Header & Footer Builder."
254
  msgstr ""
255
 
256
- #: inc/class-header-footer-elementor.php:180
257
  msgid "Ok, you deserve it"
258
  msgstr ""
259
 
260
- #: inc/class-header-footer-elementor.php:182
261
  msgid "Nope, maybe later"
262
  msgstr ""
263
 
264
- #: inc/class-header-footer-elementor.php:183
265
  msgid "I already did"
266
  msgstr ""
267
 
268
- #: inc/class-header-footer-elementor.php:246
269
  #. translators: %s: html tags
270
  msgid ""
271
  "The %1$sElementor Header & Footer Builder%2$s plugin requires "
272
  "%1$sElementor%2$s plugin installed & activated."
273
  msgstr ""
274
 
275
- #: inc/class-header-footer-elementor.php:253
276
  msgid "Activate Elementor"
277
  msgstr ""
278
 
279
- #: inc/class-header-footer-elementor.php:258
280
- #: inc/class-header-footer-elementor.php:292
281
  msgid "Install Elementor"
282
  msgstr ""
283
 
284
- #: inc/class-header-footer-elementor.php:280
285
  #. translators: %s: html tags
286
  msgid ""
287
  "The %1$sElementor Header & Footer Builder%2$s plugin has stopped working "
288
  "because you are using an older version of %1$sElementor%2$s plugin."
289
  msgstr ""
290
 
291
- #: inc/class-header-footer-elementor.php:287
292
  msgid "Update Elementor"
293
  msgstr ""
294
 
295
- #: inc/class-header-footer-elementor.php:318
296
  #. translators: %s: html tags
297
  msgid ""
298
  "Thank you for installing %1$s Elementor Header & Footer Builder %2$s "
299
  "Plugin! Click here to %3$sget started. %4$s"
300
  msgstr ""
301
 
302
- #: inc/class-header-footer-elementor.php:477
303
  #. translators: %s: html tags
304
  msgid "Theme Support"
305
  msgstr ""
306
 
307
- #: inc/class-hfe-settings-page.php:62 inc/class-hfe-settings-page.php:672
308
  msgid "Activate"
309
  msgstr ""
310
 
311
- #: inc/class-hfe-settings-page.php:63 inc/class-hfe-settings-page.php:664
312
  msgid "Activated"
313
  msgstr ""
314
 
315
- #: inc/class-hfe-settings-page.php:64 inc/class-hfe-settings-page.php:661
316
  #: inc/widgets-manager/widgets/class-navigation-menu.php:1046
317
  #: inc/widgets-manager/widgets/class-navigation-menu.php:1228
318
  msgid "Active"
319
  msgstr ""
320
 
321
- #: inc/class-hfe-settings-page.php:65
322
  msgid "Deactivate"
323
  msgstr ""
324
 
325
- #: inc/class-hfe-settings-page.php:66 inc/class-hfe-settings-page.php:669
326
  msgid "Inactive"
327
  msgstr ""
328
 
329
- #: inc/class-hfe-settings-page.php:67 inc/class-hfe-settings-page.php:685
330
  msgid "Install"
331
  msgstr ""
332
 
333
- #: inc/class-hfe-settings-page.php:68
334
  msgid "Theme Installed"
335
  msgstr ""
336
 
337
- #: inc/class-hfe-settings-page.php:69
338
  msgid "Plugin Installed"
339
  msgstr ""
340
 
341
- #: inc/class-hfe-settings-page.php:70
342
  msgid "Download"
343
  msgstr ""
344
 
345
- #: inc/class-hfe-settings-page.php:71
346
  msgid "Already Exists."
347
  msgstr ""
348
 
349
- #: inc/class-hfe-settings-page.php:72 inc/class-hfe-settings-page.php:690
350
  msgid "Visit Website"
351
  msgstr ""
352
 
353
- #: inc/class-hfe-settings-page.php:73
354
  msgid "Could not install. Please download from WordPress.org and install manually."
355
  msgstr ""
356
 
357
- #: inc/class-hfe-settings-page.php:74
358
  msgid "Your details are submitted successfully."
359
  msgstr ""
360
 
361
- #: inc/class-hfe-settings-page.php:75
362
  msgid "Encountered an error while performing your request."
363
  msgstr ""
364
 
365
- #: inc/class-hfe-settings-page.php:125
366
  msgid "Add Theme Support"
367
  msgstr ""
368
 
369
- #: inc/class-hfe-settings-page.php:142
370
  msgid ""
371
  "The Elementor Header & Footer Builder plugin need compatibility with your "
372
  "current theme to work smoothly.</br></br>Following are two methods that "
@@ -375,21 +375,21 @@ msgid ""
375
  "issue with the header or footer template, try choosing Method 2."
376
  msgstr ""
377
 
378
- #: inc/class-hfe-settings-page.php:159
379
  msgid " Method 1 (Recommended)"
380
  msgstr ""
381
 
382
- #: inc/class-hfe-settings-page.php:160
383
  msgid ""
384
  "This method replaces your theme's header (header.php) & footer (footer.php) "
385
  "template with plugin's custom templates."
386
  msgstr ""
387
 
388
- #: inc/class-hfe-settings-page.php:163
389
  msgid "Method 2"
390
  msgstr ""
391
 
392
- #: inc/class-hfe-settings-page.php:176
393
  msgid ""
394
  "Sometimes above methods might not work well with your theme, in this case, "
395
  "contact your theme author and request them to add support for the <a "
@@ -397,111 +397,111 @@ msgid ""
397
  "Header-Footer-Elementor-support-for-your-theme\">plugin.</>"
398
  msgstr ""
399
 
400
- #: inc/class-hfe-settings-page.php:195 inc/class-hfe-settings-page.php:196
401
- #: inc/class-hfe-settings-page.php:808
402
  msgid "Settings"
403
  msgstr ""
404
 
405
- #: inc/class-hfe-settings-page.php:204 inc/class-hfe-settings-page.php:205
406
- #: inc/class-hfe-settings-page.php:279
407
  msgid "About Us"
408
  msgstr ""
409
 
410
- #: inc/class-hfe-settings-page.php:239
411
  msgid "Elementor Header & Footer Builder "
412
  msgstr ""
413
 
414
- #: inc/class-hfe-settings-page.php:325
415
  #. translators: 1: Elementor, 2: Link to plugin review
416
  msgid ""
417
  "Help us spread the word about the plugin by leaving %2$s %1$s %3$s ratings "
418
  "on %2$s WordPress.org %3$s. Thank you from the Brainstorm Force team!"
419
  msgstr ""
420
 
421
- #: inc/class-hfe-settings-page.php:368
422
  msgid "Create Impressive Header and Footer Designs"
423
  msgstr ""
424
 
425
- #: inc/class-hfe-settings-page.php:369
426
  msgid ""
427
  "Elementor Header & Footer Builder plugin lets you build impactful "
428
  "navigation for your website very easily. Before we begin, we would like to "
429
  "know more about you. This will help us to serve you better."
430
  msgstr ""
431
 
432
- #: inc/class-hfe-settings-page.php:383
433
  #. translators: %1$s and %3$s are opening anchor tags, and %2$s and %4$s is
434
  #. closing anchor tags.
435
  msgid "By submitting, you agree to our %1$sTerms%2$s and %3$sPrivacy Policy%4$s."
436
  msgstr ""
437
 
438
- #: inc/class-hfe-settings-page.php:401
439
  msgid "Skip"
440
  msgstr ""
441
 
442
- #: inc/class-hfe-settings-page.php:419
443
  msgid "Beginner"
444
  msgstr ""
445
 
446
- #: inc/class-hfe-settings-page.php:420
447
  msgid "Intermediate"
448
  msgstr ""
449
 
450
- #: inc/class-hfe-settings-page.php:421
451
  msgid "Expert"
452
  msgstr ""
453
 
454
- #: inc/class-hfe-settings-page.php:423 inc/class-hfe-settings-page.php:432
455
  msgid "Field is required"
456
  msgstr ""
457
 
458
- #: inc/class-hfe-settings-page.php:424
459
  msgid "I'm a WordPress:"
460
  msgstr ""
461
 
462
- #: inc/class-hfe-settings-page.php:429
463
  msgid "Myself/My company"
464
  msgstr ""
465
 
466
- #: inc/class-hfe-settings-page.php:430
467
  msgid "My client"
468
  msgstr ""
469
 
470
- #: inc/class-hfe-settings-page.php:433
471
  msgid "I'm building website for:"
472
  msgstr ""
473
 
474
- #: inc/class-hfe-settings-page.php:456
475
  msgid "First name is required"
476
  msgstr ""
477
 
478
- #: inc/class-hfe-settings-page.php:457
479
  msgid "Your First Name"
480
  msgstr ""
481
 
482
- #: inc/class-hfe-settings-page.php:461
483
  msgid "Email address is required"
484
  msgstr ""
485
 
486
- #: inc/class-hfe-settings-page.php:462
487
  msgid "Your Work Email"
488
  msgstr ""
489
 
490
- #: inc/class-hfe-settings-page.php:467
491
  msgid "Submit"
492
  msgstr ""
493
 
494
- #: inc/class-hfe-settings-page.php:521
495
  msgid "Welcome to Elementor Header & Footer Builder!"
496
  msgstr ""
497
 
498
- #: inc/class-hfe-settings-page.php:523
499
  msgid ""
500
  "With this awesome plugin, experience the easiest way to create a customized "
501
  "header and footer for your website with Elementor. That too 100% FREE!"
502
  msgstr ""
503
 
504
- #: inc/class-hfe-settings-page.php:525
505
  msgid ""
506
  "Design beautiful layouts with simple drag & drop and display them at "
507
  "desired location with powerful target controls. The plugin comes with "
@@ -510,78 +510,78 @@ msgid ""
510
  "backed up by 24/7 support."
511
  msgstr ""
512
 
513
- #: inc/class-hfe-settings-page.php:527
514
  msgid ""
515
  "Trusted by more than 1+ Million users, Elementor Header & Footer Builder is "
516
  "a modern way to build advanced navigation for your website."
517
  msgstr ""
518
 
519
- #: inc/class-hfe-settings-page.php:529
520
  msgid ""
521
  "This plugin is brought to you by the same team behind the popular WordPress "
522
  "theme Astra and a series of Ultimate Addons plugins."
523
  msgstr ""
524
 
525
- #: inc/class-hfe-settings-page.php:535
526
  msgid "Team photo"
527
  msgstr ""
528
 
529
- #: inc/class-hfe-settings-page.php:537
530
  msgid "Brainstorm Force Team"
531
  msgstr ""
532
 
533
- #: inc/class-hfe-settings-page.php:581
534
  #. translators: %s - addon status label.
535
  msgid "%1$s %3$s %2$s"
536
  msgstr ""
537
 
538
- #: inc/class-hfe-settings-page.php:598
539
  #. translators: %s - addon status label.
540
  msgid "Status: %s"
541
  msgstr ""
542
 
543
- #: inc/class-hfe-settings-page.php:617
544
  msgid "WordPress.org"
545
  msgstr ""
546
 
547
- #: inc/class-hfe-settings-page.php:682
548
  msgid "Not Installed"
549
  msgstr ""
550
 
551
- #: inc/class-hfe-settings-page.php:715
552
  msgid "Astra Theme"
553
  msgstr ""
554
 
555
- #: inc/class-hfe-settings-page.php:716
556
  msgid ""
557
  "Powering over 1+ Million websites, Astra is loved for the fast performance "
558
  "and ease of use it offers. It is suitable for all kinds of websites like "
559
  "blogs, portfolios, business, and WooCommerce stores."
560
  msgstr ""
561
 
562
- #: inc/class-hfe-settings-page.php:727
563
  msgid "Starter Templates"
564
  msgstr ""
565
 
566
- #: inc/class-hfe-settings-page.php:728
567
  msgid ""
568
  "A popular templates plugin that provides an extensive library of "
569
  "professional and fully customizable 600+ ready website and templates. More "
570
  "than 1+ Million websites have built with this plugin."
571
  msgstr ""
572
 
573
- #: inc/class-hfe-settings-page.php:739
574
  msgid "Ultimate Addons for Elementor"
575
  msgstr ""
576
 
577
- #: inc/class-hfe-settings-page.php:740
578
  msgid ""
579
  "It’s a collection of 40+ unique, creative, and optimized Elementor widgets "
580
  "with 100+ readymade templates. Trusted by more than 600+ K web "
581
  "professionals. It’s a #1 toolkit for Elementor Page Builder."
582
  msgstr ""
583
 
584
- #: inc/class-hfe-settings-page.php:807
585
  msgid "Go to HFE Settings page"
586
  msgstr ""
587
 
@@ -775,7 +775,7 @@ msgstr ""
775
  #: inc/widgets-manager/widgets/class-navigation-menu.php:590
776
  #: inc/widgets-manager/widgets/class-page-title.php:364
777
  #: inc/widgets-manager/widgets/class-search-button.php:145
778
- #: inc/widgets-manager/widgets/class-search-button.php:767
779
  #: inc/widgets-manager/widgets/class-site-tagline.php:150
780
  #: inc/widgets-manager/widgets/class-site-title.php:152
781
  #: inc/widgets-manager/widgets/class-site-title.php:354
@@ -911,7 +911,7 @@ msgstr ""
911
  #: inc/widgets-manager/widgets/class-cart.php:263
912
  #: inc/widgets-manager/widgets/class-page-title.php:237
913
  #: inc/widgets-manager/widgets/class-search-button.php:168
914
- #: inc/widgets-manager/widgets/class-search-button.php:857
915
  #: inc/widgets-manager/widgets/class-site-title.php:211
916
  msgid "Size"
917
  msgstr ""
@@ -954,8 +954,8 @@ msgstr ""
954
  #: inc/widgets-manager/widgets/class-retina.php:424
955
  #: inc/widgets-manager/widgets/class-search-button.php:241
956
  #: inc/widgets-manager/widgets/class-search-button.php:651
957
- #: inc/widgets-manager/widgets/class-search-button.php:780
958
- #: inc/widgets-manager/widgets/class-search-button.php:883
959
  #: inc/widgets-manager/widgets/class-site-logo.php:466
960
  #: inc/widgets-manager/widgets/class-site-title.php:329
961
  msgid "Normal"
@@ -978,7 +978,7 @@ msgstr ""
978
  #: inc/widgets-manager/widgets/class-search-button.php:251
979
  #: inc/widgets-manager/widgets/class-search-button.php:418
980
  #: inc/widgets-manager/widgets/class-search-button.php:502
981
- #: inc/widgets-manager/widgets/class-search-button.php:691
982
  #: inc/widgets-manager/widgets/class-site-logo.php:581
983
  msgid "Text Color"
984
  msgstr ""
@@ -1011,8 +1011,7 @@ msgstr ""
1011
  #: inc/widgets-manager/widgets/class-search-button.php:286
1012
  #: inc/widgets-manager/widgets/class-search-button.php:450
1013
  #: inc/widgets-manager/widgets/class-search-button.php:517
1014
- #: inc/widgets-manager/widgets/class-search-button.php:670
1015
- #: inc/widgets-manager/widgets/class-search-button.php:702
1016
  #: inc/widgets-manager/widgets/class-site-logo.php:371
1017
  #: inc/widgets-manager/widgets/class-site-logo.php:596
1018
  msgid "Background Color"
@@ -1036,17 +1035,17 @@ msgstr ""
1036
  #: inc/widgets-manager/widgets/class-navigation-menu.php:1542
1037
  #: inc/widgets-manager/widgets/class-navigation-menu.php:1765
1038
  #: inc/widgets-manager/widgets/class-retina.php:459
1039
- #: inc/widgets-manager/widgets/class-search-button.php:684
1040
- #: inc/widgets-manager/widgets/class-search-button.php:800
1041
- #: inc/widgets-manager/widgets/class-search-button.php:907
1042
  #: inc/widgets-manager/widgets/class-site-logo.php:501
1043
  msgid "Hover"
1044
  msgstr ""
1045
 
1046
  #: inc/widgets-manager/widgets/class-cart.php:451
1047
  #: inc/widgets-manager/widgets/class-navigation-menu.php:1577
1048
- #: inc/widgets-manager/widgets/class-search-button.php:717
1049
- #: inc/widgets-manager/widgets/class-search-button.php:822
1050
  msgid "Icon Size"
1051
  msgstr ""
1052
 
@@ -1264,7 +1263,7 @@ msgstr ""
1264
 
1265
  #: inc/widgets-manager/widgets/class-navigation-menu.php:605
1266
  #: inc/widgets-manager/widgets/class-navigation-menu.php:621
1267
- #: inc/widgets-manager/widgets/class-search-button.php:846
1268
  msgid "Close Icon"
1269
  msgstr ""
1270
 
@@ -1409,10 +1408,10 @@ msgstr ""
1409
  #: inc/widgets-manager/widgets/class-navigation-menu.php:1517
1410
  #: inc/widgets-manager/widgets/class-navigation-menu.php:1549
1411
  #: inc/widgets-manager/widgets/class-page-title.php:312
1412
- #: inc/widgets-manager/widgets/class-search-button.php:787
1413
- #: inc/widgets-manager/widgets/class-search-button.php:807
1414
- #: inc/widgets-manager/widgets/class-search-button.php:889
1415
- #: inc/widgets-manager/widgets/class-search-button.php:914
1416
  #: inc/widgets-manager/widgets/class-site-tagline.php:217
1417
  #: inc/widgets-manager/widgets/class-site-title.php:302
1418
  msgid "Color"
@@ -1589,7 +1588,7 @@ msgstr ""
1589
 
1590
  #: inc/widgets-manager/widgets/class-retina.php:268
1591
  #: inc/widgets-manager/widgets/class-search-button.php:216
1592
- #: inc/widgets-manager/widgets/class-search-button.php:743
1593
  #: inc/widgets-manager/widgets/class-site-logo.php:301
1594
  msgid "Width"
1595
  msgstr ""
@@ -1630,7 +1629,7 @@ msgid "%1$s Getting started article » %2$s"
1630
  msgstr ""
1631
 
1632
  #: inc/widgets-manager/widgets/class-search-button.php:54
1633
- #: inc/widgets-manager/widgets/class-search-button.php:949
1634
  msgid "Search"
1635
  msgstr ""
1636
 
@@ -1667,6 +1666,11 @@ msgstr ""
1667
  msgid "Focus"
1668
  msgstr ""
1669
 
 
 
 
 
 
1670
  #: inc/widgets-manager/widgets/class-site-logo.php:61
1671
  #: inc/widgets-manager/widgets/class-site-logo.php:128
1672
  msgid "Site Logo"
2
  # This file is distributed under the same license as the Elementor Header & Footer Builder package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Elementor Header & Footer Builder 1.6.2\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/header-footer-elementor\n"
8
+ "POT-Creation-Date: 2021-06-30 09:50:46+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
122
  msgid "View Template"
123
  msgstr ""
124
 
125
+ #: admin/class-hfe-admin.php:229 inc/class-hfe-settings-page.php:266
126
  msgid "All Templates"
127
  msgstr ""
128
 
240
  msgid "Template %1$s is already assigned to the location %2$s"
241
  msgstr ""
242
 
243
+ #: inc/class-header-footer-elementor.php:178
244
  msgid ""
245
  "Hello! Seems like you have used Elementor Header & Footer Builder to build "
246
  "this website — Thanks a ton!"
247
  msgstr ""
248
 
249
+ #: inc/class-header-footer-elementor.php:179
250
  msgid ""
251
  "Could you please do us a BIG favor and give it a 5-star rating on "
252
  "WordPress? This would boost our motivation and help other users make a "
253
  "comfortable decision while choosing the Elementor Header & Footer Builder."
254
  msgstr ""
255
 
256
+ #: inc/class-header-footer-elementor.php:181
257
  msgid "Ok, you deserve it"
258
  msgstr ""
259
 
260
+ #: inc/class-header-footer-elementor.php:183
261
  msgid "Nope, maybe later"
262
  msgstr ""
263
 
264
+ #: inc/class-header-footer-elementor.php:184
265
  msgid "I already did"
266
  msgstr ""
267
 
268
+ #: inc/class-header-footer-elementor.php:247
269
  #. translators: %s: html tags
270
  msgid ""
271
  "The %1$sElementor Header & Footer Builder%2$s plugin requires "
272
  "%1$sElementor%2$s plugin installed & activated."
273
  msgstr ""
274
 
275
+ #: inc/class-header-footer-elementor.php:254
276
  msgid "Activate Elementor"
277
  msgstr ""
278
 
279
+ #: inc/class-header-footer-elementor.php:259
280
+ #: inc/class-header-footer-elementor.php:293
281
  msgid "Install Elementor"
282
  msgstr ""
283
 
284
+ #: inc/class-header-footer-elementor.php:281
285
  #. translators: %s: html tags
286
  msgid ""
287
  "The %1$sElementor Header & Footer Builder%2$s plugin has stopped working "
288
  "because you are using an older version of %1$sElementor%2$s plugin."
289
  msgstr ""
290
 
291
+ #: inc/class-header-footer-elementor.php:288
292
  msgid "Update Elementor"
293
  msgstr ""
294
 
295
+ #: inc/class-header-footer-elementor.php:319
296
  #. translators: %s: html tags
297
  msgid ""
298
  "Thank you for installing %1$s Elementor Header & Footer Builder %2$s "
299
  "Plugin! Click here to %3$sget started. %4$s"
300
  msgstr ""
301
 
302
+ #: inc/class-header-footer-elementor.php:478
303
  #. translators: %s: html tags
304
  msgid "Theme Support"
305
  msgstr ""
306
 
307
+ #: inc/class-hfe-settings-page.php:61 inc/class-hfe-settings-page.php:665
308
  msgid "Activate"
309
  msgstr ""
310
 
311
+ #: inc/class-hfe-settings-page.php:62 inc/class-hfe-settings-page.php:657
312
  msgid "Activated"
313
  msgstr ""
314
 
315
+ #: inc/class-hfe-settings-page.php:63 inc/class-hfe-settings-page.php:654
316
  #: inc/widgets-manager/widgets/class-navigation-menu.php:1046
317
  #: inc/widgets-manager/widgets/class-navigation-menu.php:1228
318
  msgid "Active"
319
  msgstr ""
320
 
321
+ #: inc/class-hfe-settings-page.php:64
322
  msgid "Deactivate"
323
  msgstr ""
324
 
325
+ #: inc/class-hfe-settings-page.php:65 inc/class-hfe-settings-page.php:662
326
  msgid "Inactive"
327
  msgstr ""
328
 
329
+ #: inc/class-hfe-settings-page.php:66 inc/class-hfe-settings-page.php:678
330
  msgid "Install"
331
  msgstr ""
332
 
333
+ #: inc/class-hfe-settings-page.php:67
334
  msgid "Theme Installed"
335
  msgstr ""
336
 
337
+ #: inc/class-hfe-settings-page.php:68
338
  msgid "Plugin Installed"
339
  msgstr ""
340
 
341
+ #: inc/class-hfe-settings-page.php:69
342
  msgid "Download"
343
  msgstr ""
344
 
345
+ #: inc/class-hfe-settings-page.php:70
346
  msgid "Already Exists."
347
  msgstr ""
348
 
349
+ #: inc/class-hfe-settings-page.php:71 inc/class-hfe-settings-page.php:683
350
  msgid "Visit Website"
351
  msgstr ""
352
 
353
+ #: inc/class-hfe-settings-page.php:72
354
  msgid "Could not install. Please download from WordPress.org and install manually."
355
  msgstr ""
356
 
357
+ #: inc/class-hfe-settings-page.php:73
358
  msgid "Your details are submitted successfully."
359
  msgstr ""
360
 
361
+ #: inc/class-hfe-settings-page.php:74
362
  msgid "Encountered an error while performing your request."
363
  msgstr ""
364
 
365
+ #: inc/class-hfe-settings-page.php:115
366
  msgid "Add Theme Support"
367
  msgstr ""
368
 
369
+ #: inc/class-hfe-settings-page.php:132
370
  msgid ""
371
  "The Elementor Header & Footer Builder plugin need compatibility with your "
372
  "current theme to work smoothly.</br></br>Following are two methods that "
375
  "issue with the header or footer template, try choosing Method 2."
376
  msgstr ""
377
 
378
+ #: inc/class-hfe-settings-page.php:149
379
  msgid " Method 1 (Recommended)"
380
  msgstr ""
381
 
382
+ #: inc/class-hfe-settings-page.php:150
383
  msgid ""
384
  "This method replaces your theme's header (header.php) & footer (footer.php) "
385
  "template with plugin's custom templates."
386
  msgstr ""
387
 
388
+ #: inc/class-hfe-settings-page.php:153
389
  msgid "Method 2"
390
  msgstr ""
391
 
392
+ #: inc/class-hfe-settings-page.php:166
393
  msgid ""
394
  "Sometimes above methods might not work well with your theme, in this case, "
395
  "contact your theme author and request them to add support for the <a "
397
  "Header-Footer-Elementor-support-for-your-theme\">plugin.</>"
398
  msgstr ""
399
 
400
+ #: inc/class-hfe-settings-page.php:185 inc/class-hfe-settings-page.php:186
401
+ #: inc/class-hfe-settings-page.php:801
402
  msgid "Settings"
403
  msgstr ""
404
 
405
+ #: inc/class-hfe-settings-page.php:194 inc/class-hfe-settings-page.php:195
406
+ #: inc/class-hfe-settings-page.php:272
407
  msgid "About Us"
408
  msgstr ""
409
 
410
+ #: inc/class-hfe-settings-page.php:211
411
  msgid "Elementor Header & Footer Builder "
412
  msgstr ""
413
 
414
+ #: inc/class-hfe-settings-page.php:318
415
  #. translators: 1: Elementor, 2: Link to plugin review
416
  msgid ""
417
  "Help us spread the word about the plugin by leaving %2$s %1$s %3$s ratings "
418
  "on %2$s WordPress.org %3$s. Thank you from the Brainstorm Force team!"
419
  msgstr ""
420
 
421
+ #: inc/class-hfe-settings-page.php:361
422
  msgid "Create Impressive Header and Footer Designs"
423
  msgstr ""
424
 
425
+ #: inc/class-hfe-settings-page.php:362
426
  msgid ""
427
  "Elementor Header & Footer Builder plugin lets you build impactful "
428
  "navigation for your website very easily. Before we begin, we would like to "
429
  "know more about you. This will help us to serve you better."
430
  msgstr ""
431
 
432
+ #: inc/class-hfe-settings-page.php:376
433
  #. translators: %1$s and %3$s are opening anchor tags, and %2$s and %4$s is
434
  #. closing anchor tags.
435
  msgid "By submitting, you agree to our %1$sTerms%2$s and %3$sPrivacy Policy%4$s."
436
  msgstr ""
437
 
438
+ #: inc/class-hfe-settings-page.php:394
439
  msgid "Skip"
440
  msgstr ""
441
 
442
+ #: inc/class-hfe-settings-page.php:412
443
  msgid "Beginner"
444
  msgstr ""
445
 
446
+ #: inc/class-hfe-settings-page.php:413
447
  msgid "Intermediate"
448
  msgstr ""
449
 
450
+ #: inc/class-hfe-settings-page.php:414
451
  msgid "Expert"
452
  msgstr ""
453
 
454
+ #: inc/class-hfe-settings-page.php:416 inc/class-hfe-settings-page.php:425
455
  msgid "Field is required"
456
  msgstr ""
457
 
458
+ #: inc/class-hfe-settings-page.php:417
459
  msgid "I'm a WordPress:"
460
  msgstr ""
461
 
462
+ #: inc/class-hfe-settings-page.php:422
463
  msgid "Myself/My company"
464
  msgstr ""
465
 
466
+ #: inc/class-hfe-settings-page.php:423
467
  msgid "My client"
468
  msgstr ""
469
 
470
+ #: inc/class-hfe-settings-page.php:426
471
  msgid "I'm building website for:"
472
  msgstr ""
473
 
474
+ #: inc/class-hfe-settings-page.php:449
475
  msgid "First name is required"
476
  msgstr ""
477
 
478
+ #: inc/class-hfe-settings-page.php:450
479
  msgid "Your First Name"
480
  msgstr ""
481
 
482
+ #: inc/class-hfe-settings-page.php:454
483
  msgid "Email address is required"
484
  msgstr ""
485
 
486
+ #: inc/class-hfe-settings-page.php:455
487
  msgid "Your Work Email"
488
  msgstr ""
489
 
490
+ #: inc/class-hfe-settings-page.php:460
491
  msgid "Submit"
492
  msgstr ""
493
 
494
+ #: inc/class-hfe-settings-page.php:514
495
  msgid "Welcome to Elementor Header & Footer Builder!"
496
  msgstr ""
497
 
498
+ #: inc/class-hfe-settings-page.php:516
499
  msgid ""
500
  "With this awesome plugin, experience the easiest way to create a customized "
501
  "header and footer for your website with Elementor. That too 100% FREE!"
502
  msgstr ""
503
 
504
+ #: inc/class-hfe-settings-page.php:518
505
  msgid ""
506
  "Design beautiful layouts with simple drag & drop and display them at "
507
  "desired location with powerful target controls. The plugin comes with "
510
  "backed up by 24/7 support."
511
  msgstr ""
512
 
513
+ #: inc/class-hfe-settings-page.php:520
514
  msgid ""
515
  "Trusted by more than 1+ Million users, Elementor Header & Footer Builder is "
516
  "a modern way to build advanced navigation for your website."
517
  msgstr ""
518
 
519
+ #: inc/class-hfe-settings-page.php:522
520
  msgid ""
521
  "This plugin is brought to you by the same team behind the popular WordPress "
522
  "theme Astra and a series of Ultimate Addons plugins."
523
  msgstr ""
524
 
525
+ #: inc/class-hfe-settings-page.php:528
526
  msgid "Team photo"
527
  msgstr ""
528
 
529
+ #: inc/class-hfe-settings-page.php:530
530
  msgid "Brainstorm Force Team"
531
  msgstr ""
532
 
533
+ #: inc/class-hfe-settings-page.php:574
534
  #. translators: %s - addon status label.
535
  msgid "%1$s %3$s %2$s"
536
  msgstr ""
537
 
538
+ #: inc/class-hfe-settings-page.php:591
539
  #. translators: %s - addon status label.
540
  msgid "Status: %s"
541
  msgstr ""
542
 
543
+ #: inc/class-hfe-settings-page.php:610
544
  msgid "WordPress.org"
545
  msgstr ""
546
 
547
+ #: inc/class-hfe-settings-page.php:675
548
  msgid "Not Installed"
549
  msgstr ""
550
 
551
+ #: inc/class-hfe-settings-page.php:708
552
  msgid "Astra Theme"
553
  msgstr ""
554
 
555
+ #: inc/class-hfe-settings-page.php:709
556
  msgid ""
557
  "Powering over 1+ Million websites, Astra is loved for the fast performance "
558
  "and ease of use it offers. It is suitable for all kinds of websites like "
559
  "blogs, portfolios, business, and WooCommerce stores."
560
  msgstr ""
561
 
562
+ #: inc/class-hfe-settings-page.php:720
563
  msgid "Starter Templates"
564
  msgstr ""
565
 
566
+ #: inc/class-hfe-settings-page.php:721
567
  msgid ""
568
  "A popular templates plugin that provides an extensive library of "
569
  "professional and fully customizable 600+ ready website and templates. More "
570
  "than 1+ Million websites have built with this plugin."
571
  msgstr ""
572
 
573
+ #: inc/class-hfe-settings-page.php:732
574
  msgid "Ultimate Addons for Elementor"
575
  msgstr ""
576
 
577
+ #: inc/class-hfe-settings-page.php:733
578
  msgid ""
579
  "It’s a collection of 40+ unique, creative, and optimized Elementor widgets "
580
  "with 100+ readymade templates. Trusted by more than 600+ K web "
581
  "professionals. It’s a #1 toolkit for Elementor Page Builder."
582
  msgstr ""
583
 
584
+ #: inc/class-hfe-settings-page.php:800
585
  msgid "Go to HFE Settings page"
586
  msgstr ""
587
 
775
  #: inc/widgets-manager/widgets/class-navigation-menu.php:590
776
  #: inc/widgets-manager/widgets/class-page-title.php:364
777
  #: inc/widgets-manager/widgets/class-search-button.php:145
778
+ #: inc/widgets-manager/widgets/class-search-button.php:791
779
  #: inc/widgets-manager/widgets/class-site-tagline.php:150
780
  #: inc/widgets-manager/widgets/class-site-title.php:152
781
  #: inc/widgets-manager/widgets/class-site-title.php:354
911
  #: inc/widgets-manager/widgets/class-cart.php:263
912
  #: inc/widgets-manager/widgets/class-page-title.php:237
913
  #: inc/widgets-manager/widgets/class-search-button.php:168
914
+ #: inc/widgets-manager/widgets/class-search-button.php:881
915
  #: inc/widgets-manager/widgets/class-site-title.php:211
916
  msgid "Size"
917
  msgstr ""
954
  #: inc/widgets-manager/widgets/class-retina.php:424
955
  #: inc/widgets-manager/widgets/class-search-button.php:241
956
  #: inc/widgets-manager/widgets/class-search-button.php:651
957
+ #: inc/widgets-manager/widgets/class-search-button.php:804
958
+ #: inc/widgets-manager/widgets/class-search-button.php:907
959
  #: inc/widgets-manager/widgets/class-site-logo.php:466
960
  #: inc/widgets-manager/widgets/class-site-title.php:329
961
  msgid "Normal"
978
  #: inc/widgets-manager/widgets/class-search-button.php:251
979
  #: inc/widgets-manager/widgets/class-search-button.php:418
980
  #: inc/widgets-manager/widgets/class-search-button.php:502
981
+ #: inc/widgets-manager/widgets/class-search-button.php:698
982
  #: inc/widgets-manager/widgets/class-site-logo.php:581
983
  msgid "Text Color"
984
  msgstr ""
1011
  #: inc/widgets-manager/widgets/class-search-button.php:286
1012
  #: inc/widgets-manager/widgets/class-search-button.php:450
1013
  #: inc/widgets-manager/widgets/class-search-button.php:517
1014
+ #: inc/widgets-manager/widgets/class-search-button.php:709
 
1015
  #: inc/widgets-manager/widgets/class-site-logo.php:371
1016
  #: inc/widgets-manager/widgets/class-site-logo.php:596
1017
  msgid "Background Color"
1035
  #: inc/widgets-manager/widgets/class-navigation-menu.php:1542
1036
  #: inc/widgets-manager/widgets/class-navigation-menu.php:1765
1037
  #: inc/widgets-manager/widgets/class-retina.php:459
1038
+ #: inc/widgets-manager/widgets/class-search-button.php:691
1039
+ #: inc/widgets-manager/widgets/class-search-button.php:824
1040
+ #: inc/widgets-manager/widgets/class-search-button.php:931
1041
  #: inc/widgets-manager/widgets/class-site-logo.php:501
1042
  msgid "Hover"
1043
  msgstr ""
1044
 
1045
  #: inc/widgets-manager/widgets/class-cart.php:451
1046
  #: inc/widgets-manager/widgets/class-navigation-menu.php:1577
1047
+ #: inc/widgets-manager/widgets/class-search-button.php:741
1048
+ #: inc/widgets-manager/widgets/class-search-button.php:846
1049
  msgid "Icon Size"
1050
  msgstr ""
1051
 
1263
 
1264
  #: inc/widgets-manager/widgets/class-navigation-menu.php:605
1265
  #: inc/widgets-manager/widgets/class-navigation-menu.php:621
1266
+ #: inc/widgets-manager/widgets/class-search-button.php:870
1267
  msgid "Close Icon"
1268
  msgstr ""
1269
 
1408
  #: inc/widgets-manager/widgets/class-navigation-menu.php:1517
1409
  #: inc/widgets-manager/widgets/class-navigation-menu.php:1549
1410
  #: inc/widgets-manager/widgets/class-page-title.php:312
1411
+ #: inc/widgets-manager/widgets/class-search-button.php:811
1412
+ #: inc/widgets-manager/widgets/class-search-button.php:831
1413
+ #: inc/widgets-manager/widgets/class-search-button.php:913
1414
+ #: inc/widgets-manager/widgets/class-search-button.php:938
1415
  #: inc/widgets-manager/widgets/class-site-tagline.php:217
1416
  #: inc/widgets-manager/widgets/class-site-title.php:302
1417
  msgid "Color"
1588
 
1589
  #: inc/widgets-manager/widgets/class-retina.php:268
1590
  #: inc/widgets-manager/widgets/class-search-button.php:216
1591
+ #: inc/widgets-manager/widgets/class-search-button.php:767
1592
  #: inc/widgets-manager/widgets/class-site-logo.php:301
1593
  msgid "Width"
1594
  msgstr ""
1629
  msgstr ""
1630
 
1631
  #: inc/widgets-manager/widgets/class-search-button.php:54
1632
+ #: inc/widgets-manager/widgets/class-search-button.php:973
1633
  msgid "Search"
1634
  msgstr ""
1635
 
1666
  msgid "Focus"
1667
  msgstr ""
1668
 
1669
+ #: inc/widgets-manager/widgets/class-search-button.php:671
1670
+ #: inc/widgets-manager/widgets/class-search-button.php:724
1671
+ msgid "Background"
1672
+ msgstr ""
1673
+
1674
  #: inc/widgets-manager/widgets/class-site-logo.php:61
1675
  #: inc/widgets-manager/widgets/class-site-logo.php:128
1676
  msgid "Site Logo"
readme.txt CHANGED
@@ -5,7 +5,7 @@ Donate link: https://www.paypal.me/BrainstormForce
5
  Requires at least: 4.4
6
  Requires PHP: 5.4
7
  Tested up to: 5.7.2
8
- Stable tag: 1.6.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -137,6 +137,16 @@ This same applies when you are creating your Header/Footer using this plugin.
137
  5. Default widgets available with Elementor Header & Footer Builder.
138
 
139
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
140
  = 1.6.1 =
141
  - Fix: Footer misplaced in the header or content area due to a bug introduced in v1.6.0.
142
 
5
  Requires at least: 4.4
6
  Requires PHP: 5.4
7
  Tested up to: 5.7.2
8
+ Stable tag: 1.6.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
137
  5. Default widgets available with Elementor Header & Footer Builder.
138
 
139
  == Changelog ==
140
+ = 1.6.2 =
141
+ - Improvement: Copyright - Added custom link attributes support.
142
+ - Improvement: Page Title - Added custom link attributes support.
143
+ - Improvement: Retina Image - Added custom link attributes support.
144
+ - Improvement: Search - Added gradient color support to the search button.
145
+ - Improvement: Site Logo - Added custom link attributes support.
146
+ - Improvement: Site Title - Added custom link attributes support.
147
+ - Fix: Templates views section not displaying correctly and related code conflicting with Yoast SEO plugin.
148
+ - Fix: Widgets icon color issue with Elementor's dark mode.
149
+
150
  = 1.6.1 =
151
  - Fix: Footer misplaced in the header or content area due to a bug introduced in v1.6.0.
152