Version Description
- Fixed: js load on https
Download this release
Release Info
Developer | damiroquai |
Plugin | myStickymenu |
Version | 1.8.2 |
Comparing to | |
See all releases |
Code changes from version 1.8.1 to 1.8.2
- mystickymenu.php +3 -3
- readme.txt +9 -3
mystickymenu.php
CHANGED
@@ -3,9 +3,9 @@
|
|
3 |
Plugin Name: myStickymenu
|
4 |
Plugin URI: http://wordpress.transformnews.com/plugins/mystickymenu-simple-sticky-fixed-on-top-menu-implementation-for-twentythirteen-menu-269
|
5 |
Description: Simple sticky (fixed on top) menu implementation for default Twentythirteen navigation menu. For other themes, after install go to Settings / myStickymenu and change Sticky Class to .your_navbar_class or #your_navbar_id.
|
6 |
-
Version: 1.8.
|
7 |
Author: m.r.d.a
|
8 |
-
Text
|
9 |
Domain Path: /languages
|
10 |
License: GPLv2 or later
|
11 |
*/
|
@@ -468,7 +468,7 @@ if ($mysticky_options ['disable_css'] == false ){
|
|
468 |
$mysticky_options['mysticky_active_on_height'] = $mysticky_options['mysticky_active_on_height_home'];
|
469 |
};
|
470 |
|
471 |
-
wp_register_script('mystickymenu',
|
472 |
wp_enqueue_script( 'mystickymenu' );
|
473 |
|
474 |
$mysticky_translation_array = array(
|
3 |
Plugin Name: myStickymenu
|
4 |
Plugin URI: http://wordpress.transformnews.com/plugins/mystickymenu-simple-sticky-fixed-on-top-menu-implementation-for-twentythirteen-menu-269
|
5 |
Description: Simple sticky (fixed on top) menu implementation for default Twentythirteen navigation menu. For other themes, after install go to Settings / myStickymenu and change Sticky Class to .your_navbar_class or #your_navbar_id.
|
6 |
+
Version: 1.8.2
|
7 |
Author: m.r.d.a
|
8 |
+
Text Domain: mystickymenu
|
9 |
Domain Path: /languages
|
10 |
License: GPLv2 or later
|
11 |
*/
|
468 |
$mysticky_options['mysticky_active_on_height'] = $mysticky_options['mysticky_active_on_height_home'];
|
469 |
};
|
470 |
|
471 |
+
wp_register_script('mystickymenu', plugins_url( 'js/mystickymenu.min.js', __FILE__ ), false,'1.0.0', true);
|
472 |
wp_enqueue_script( 'mystickymenu' );
|
473 |
|
474 |
$mysticky_translation_array = array(
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== myStickymenu ===
|
2 |
Contributors: damiroquai
|
3 |
-
Donate link:
|
4 |
Tags: sticky menu, twentythirteen, twenty-thirteen, plugin, menu, jquery, sticky header, header, sticky, sticky navigation
|
5 |
Requires at least: 3.5.1
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.8.
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
This modern lightweight plugin will made your menu or header sticky on top of page, after desired number of pixels when scrolled.
|
@@ -52,6 +52,9 @@ Also check another header example here - https://wordpress.org/support/topic/log
|
|
52 |
|
53 |
== Changelog ==
|
54 |
|
|
|
|
|
|
|
55 |
= 1.8.1 =
|
56 |
* Added: “Disable CSS“. If you plan to add style manually to your style.css in order to improve your site performance disable plugin CSS style printed by default in document head element.
|
57 |
* Minimized mystickymenu.js to improve performance.
|
@@ -98,6 +101,9 @@ Also check another header example here - https://wordpress.org/support/topic/log
|
|
98 |
|
99 |
== Upgrade Notice ==
|
100 |
|
|
|
|
|
|
|
101 |
= 1.8.1 =
|
102 |
* Added: “Disable CSS“. If you plan to add style manually to your style.css in order to improve your site performance disable plugin CSS style printed by default in document head element.
|
103 |
* Minimized mystickymenu.js to improve performance.
|
1 |
=== myStickymenu ===
|
2 |
Contributors: damiroquai
|
3 |
+
Donate link: http://wordpress.transformnews.com/contact
|
4 |
Tags: sticky menu, twentythirteen, twenty-thirteen, plugin, menu, jquery, sticky header, header, sticky, sticky navigation
|
5 |
Requires at least: 3.5.1
|
6 |
+
Tested up to: 4.4
|
7 |
+
Stable tag: 1.8.2
|
8 |
License: GPLv2 or later
|
9 |
|
10 |
This modern lightweight plugin will made your menu or header sticky on top of page, after desired number of pixels when scrolled.
|
52 |
|
53 |
== Changelog ==
|
54 |
|
55 |
+
= 1.8.2 =
|
56 |
+
* Fixed: js load on https
|
57 |
+
|
58 |
= 1.8.1 =
|
59 |
* Added: “Disable CSS“. If you plan to add style manually to your style.css in order to improve your site performance disable plugin CSS style printed by default in document head element.
|
60 |
* Minimized mystickymenu.js to improve performance.
|
101 |
|
102 |
== Upgrade Notice ==
|
103 |
|
104 |
+
= 1.8.2 =
|
105 |
+
* Fixed: js load on https
|
106 |
+
|
107 |
= 1.8.1 =
|
108 |
* Added: “Disable CSS“. If you plan to add style manually to your style.css in order to improve your site performance disable plugin CSS style printed by default in document head element.
|
109 |
* Minimized mystickymenu.js to improve performance.
|