Header Footer Elementor - Version 1.2.2

Version Description

  • Fix: Add default fallback theme support after checking if current theme does not add it.
Download this release

Release Info

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

Code changes from version 1.2.1 to 1.2.2

header-footer-elementor.php CHANGED
@@ -7,12 +7,12 @@
7
  * Author URI: https://www.brainstormforce.com/
8
  * Text Domain: header-footer-elementor
9
  * Domain Path: /languages
10
- * Version: 1.2.1
11
  *
12
  * @package header-footer-elementor
13
  */
14
 
15
- define( 'HFE_VER', '1.2.1' );
16
  define( 'HFE_DIR', plugin_dir_path( __FILE__ ) );
17
  define( 'HFE_URL', plugins_url( '/', __FILE__ ) );
18
  define( 'HFE_PATH', plugin_basename( __FILE__ ) );
7
  * Author URI: https://www.brainstormforce.com/
8
  * Text Domain: header-footer-elementor
9
  * Domain Path: /languages
10
+ * Version: 1.2.2
11
  *
12
  * @package header-footer-elementor
13
  */
14
 
15
+ define( 'HFE_VER', '1.2.2' );
16
  define( 'HFE_DIR', plugin_dir_path( __FILE__ ) );
17
  define( 'HFE_URL', plugins_url( '/', __FILE__ ) );
18
  define( 'HFE_PATH', plugin_basename( __FILE__ ) );
inc/class-header-footer-elementor.php CHANGED
@@ -71,8 +71,6 @@ class Header_Footer_Elementor {
71
  } elseif ( 'storefront' == $this->template ) {
72
  require HFE_DIR . 'themes/storefront/class-hfe-storefront-compat.php';
73
  } else {
74
- require_once HFE_DIR . 'themes/default/class-hfe-fallback-theme-support.php';
75
-
76
  add_action( 'init', [ $this, 'setup_unsupported_theme_notice' ] );
77
  }
78
 
@@ -316,6 +314,8 @@ class Header_Footer_Elementor {
316
  'repeat-notice-after' => false,
317
  ]
318
  );
 
 
319
  }
320
  }
321
 
71
  } elseif ( 'storefront' == $this->template ) {
72
  require HFE_DIR . 'themes/storefront/class-hfe-storefront-compat.php';
73
  } else {
 
 
74
  add_action( 'init', [ $this, 'setup_unsupported_theme_notice' ] );
75
  }
76
 
314
  'repeat-notice-after' => false,
315
  ]
316
  );
317
+
318
+ require_once HFE_DIR . 'themes/default/class-hfe-fallback-theme-support.php';
319
  }
320
  }
321
 
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.3
8
- Stable tag: 1.2.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -130,6 +130,9 @@ You can add support for the plugin from your child theme. Just follow <a href="h
130
 
131
  == Changelog ==
132
 
 
 
 
133
  = 1.2.1 =
134
  - Categorize the Elementor widgets in a separate category in the Elementor window.
135
  - Hide target rules options when a custom block template is selected.
5
  Requires at least: 4.4
6
  Requires PHP: 5.4
7
  Tested up to: 5.3
8
+ Stable tag: 1.2.2
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
130
 
131
  == Changelog ==
132
 
133
+ = 1.2.2 =
134
+ - Fix: Add default fallback theme support after checking if current theme does not add it.
135
+
136
  = 1.2.1 =
137
  - Categorize the Elementor widgets in a separate category in the Elementor window.
138
  - Hide target rules options when a custom block template is selected.