Sticky Header Effects for Elementor - Version 1.2.1

Version Description

  • Added: Compatibility with the new Elementor 2.1.1 version
  • Fixed: JavaScript error
Download this release

Release Info

Developer rwattner
Plugin Icon 128x128 Sticky Header Effects for Elementor
Version 1.2.1
Comparing to
See all releases

Code changes from version 1.2.0 to 1.2.1

assets/js/she-header.js CHANGED
@@ -29,8 +29,10 @@ function sheHeader() {
29
  header_elementor = $j('.elementor-edit-mode .she-header-yes'),
30
  data_settings = header.data('settings');
31
 
32
- var responsive_settings = data_settings["transparent_on"],
33
- width = $j(window).width();
 
 
34
 
35
  // Check responsive is enabled
36
  if( typeof width != 'undefined' && width) {
29
  header_elementor = $j('.elementor-edit-mode .she-header-yes'),
30
  data_settings = header.data('settings');
31
 
32
+ if ( typeof data_settings != 'undefined' ) {
33
+ var responsive_settings = data_settings["transparent_on"];
34
+ var width = $j(window).width();
35
+ }
36
 
37
  // Check responsive is enabled
38
  if( typeof width != 'undefined' && width) {
readme.txt CHANGED
@@ -4,9 +4,9 @@ Contributors: rwattner, dgovea
4
  Donate Link: https://www.paypal.me/StickyHeaderEffects
5
  Tags: Elementor, Elementor Page Builder, Elements, Elementor Add-ons, Add-ons, Page Builder, Widgets, Briefcasewp
6
  Requires at least: 4.9.0
7
- Tested up to: 4.9.6
8
  Requires PHP: 5.4
9
- Stable tag: 1.2.0
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
@@ -30,9 +30,18 @@ This plugin is meant to be an add-on to Elementor Pro page builder as it's not a
30
  * Shrink - An effect which changes section min-height to maximize space and achieve a slim style without losing functionality.
31
  (Remember that the "shrink" effect is limited by the height and padding of the header content. See the F.A.Q.)
32
 
33
- ### Pro features
34
 
35
- Coming very soon. Stay tuned!
 
 
 
 
 
 
 
 
 
36
 
37
  == Installation ==
38
 
@@ -82,6 +91,10 @@ Sticky Header Options for Elementor is light-weight and you can also use only th
82
 
83
  == Changelog ==
84
 
 
 
 
 
85
  = 1.2.0 =
86
  - Removed: Sticky Header feature(Elementor fixed theirs)
87
  - Added: Transparent header feature
@@ -107,6 +120,10 @@ Sticky Header Options for Elementor is light-weight and you can also use only th
107
 
108
  == Upgrade Notice ==
109
 
 
 
 
 
110
  = 1.2.0 =
111
  Removed: Sticky Header feature(Elementor fixed theirs)
112
  Added: Transparent header feature
4
  Donate Link: https://www.paypal.me/StickyHeaderEffects
5
  Tags: Elementor, Elementor Page Builder, Elements, Elementor Add-ons, Add-ons, Page Builder, Widgets, Briefcasewp
6
  Requires at least: 4.9.0
7
+ Tested up to: 4.9.8
8
  Requires PHP: 5.4
9
+ Stable tag: 1.2.1
10
  License: GPLv2 or later
11
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
12
 
30
  * Shrink - An effect which changes section min-height to maximize space and achieve a slim style without losing functionality.
31
  (Remember that the "shrink" effect is limited by the height and padding of the header content. See the F.A.Q.)
32
 
33
+ ### Coming Soon
34
 
35
+ * Shrink logo - Ability to adjust the logo height after scrolling
36
+
37
+ ### Pro Features Coming Soon
38
+
39
+ * Replace logo - Change logo image entirely
40
+ * Entrance animations - Slide-in and fade-in animations with animation duration
41
+ * Hide elements - Hide or show header elements after scrolling
42
+ * Box shadow - Add or remove box shadow effect upon scrolling with color, horizontal, vertical, blur, and spread controls
43
+ * Menu toggle animations - Entrance and exit animations for the mobile hamburger menu
44
+ * Split menu - Menus that will split to allow center logo
45
 
46
  == Installation ==
47
 
91
 
92
  == Changelog ==
93
 
94
+ = 1.2.1 =
95
+ - Added: Compatibility with the new Elementor 2.1.1 version
96
+ - Fixed: JavaScript error
97
+
98
  = 1.2.0 =
99
  - Removed: Sticky Header feature(Elementor fixed theirs)
100
  - Added: Transparent header feature
120
 
121
  == Upgrade Notice ==
122
 
123
+ = 1.2.1 =
124
+ - Added: Compatibility with the new Elementor 2.1.1 version
125
+ - Fixed: JavaScript error
126
+
127
  = 1.2.0 =
128
  Removed: Sticky Header feature(Elementor fixed theirs)
129
  Added: Transparent header feature
sticky-header-effects-for-elementor.php CHANGED
@@ -3,11 +3,11 @@
3
  * Plugin Name: Sticky Header Effects for Elementor
4
  * Plugin URI: http://robertwattner.com/sticky-header-effects-for-elementor
5
  * Description: Options and features that extend Elementor Pro's sticky header capabilities.
6
- * Version: 1.2.0
7
  * Author: Rwattner
8
  * Author URI: http://robertwattner.com
9
  * Requires at least: 4.9.0
10
- * Tested up to: 4.9.6
11
  *
12
  * Text Domain: she-header
13
  * Domain Path: /languages/
@@ -19,8 +19,8 @@
19
 
20
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
21
 
22
- define( 'SHE_HEADER_VERSION', '1.2.0' );
23
- define( 'SHE_HEADER_PREVIOUS_STABLE_VERSION', '1.1.2' );
24
 
25
  define( 'SHE_HEADER__FILE__', __FILE__ );
26
  define( 'SHE_HEADER_PLUGIN_BASE', plugin_basename( SHE_HEADER__FILE__ ) );
3
  * Plugin Name: Sticky Header Effects for Elementor
4
  * Plugin URI: http://robertwattner.com/sticky-header-effects-for-elementor
5
  * Description: Options and features that extend Elementor Pro's sticky header capabilities.
6
+ * Version: 1.2.1
7
  * Author: Rwattner
8
  * Author URI: http://robertwattner.com
9
  * Requires at least: 4.9.0
10
+ * Tested up to: 4.9.8
11
  *
12
  * Text Domain: she-header
13
  * Domain Path: /languages/
19
 
20
  if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
21
 
22
+ define( 'SHE_HEADER_VERSION', '1.2.1' );
23
+ define( 'SHE_HEADER_PREVIOUS_STABLE_VERSION', '1.2' );
24
 
25
  define( 'SHE_HEADER__FILE__', __FILE__ );
26
  define( 'SHE_HEADER_PLUGIN_BASE', plugin_basename( SHE_HEADER__FILE__ ) );