Version Description
WP 5.4 compatibility, and welcome announcement bar fixed
Download this release
Release Info
Developer | galdub |
Plugin | myStickymenu |
Version | 2.3.6 |
Comparing to | |
See all releases |
Code changes from version 2.3.5 to 2.3.6
- mystickymenu.php +2 -2
- readme.txt +4 -2
- welcome-bar.php +1 -1
mystickymenu.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: myStickymenu
|
4 |
Plugin URI: https://premio.io/
|
5 |
Description: Simple sticky (fixed on top) menu implementation for navigation menu and Welcome bar for announcements and promotion. After install go to Settings / myStickymenu and change Sticky Class to .your_navbar_class or #your_navbar_id.
|
6 |
-
Version: 2.3.
|
7 |
Author: Premio
|
8 |
Author URI: https://premio.io/downloads/mystickymenu/
|
9 |
Text Domain: mystickymenu
|
@@ -12,7 +12,7 @@ License: GPLv2 or later
|
|
12 |
*/
|
13 |
|
14 |
defined('ABSPATH') or die("Cannot access pages directly.");
|
15 |
-
define( 'MYSTICKY_VERSION', '2.3.
|
16 |
require_once("mystickymenu-fonts.php");
|
17 |
require_once("welcome-bar.php");
|
18 |
|
3 |
Plugin Name: myStickymenu
|
4 |
Plugin URI: https://premio.io/
|
5 |
Description: Simple sticky (fixed on top) menu implementation for navigation menu and Welcome bar for announcements and promotion. After install go to Settings / myStickymenu and change Sticky Class to .your_navbar_class or #your_navbar_id.
|
6 |
+
Version: 2.3.6
|
7 |
Author: Premio
|
8 |
Author URI: https://premio.io/downloads/mystickymenu/
|
9 |
Text Domain: mystickymenu
|
12 |
*/
|
13 |
|
14 |
defined('ABSPATH') or die("Cannot access pages directly.");
|
15 |
+
define( 'MYSTICKY_VERSION', '2.3.6' );
|
16 |
require_once("mystickymenu-fonts.php");
|
17 |
require_once("welcome-bar.php");
|
18 |
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: tomeraharon, galdub, premio
|
3 |
Tags:menu, header, sticky menu, sticky header, floating menu, floating navigation menu, navigation menu, navigation, sticky navigation menu, welcome bar, hello bar, top bar, sticky bar, floating bar, notification bar
|
4 |
Requires at least: 3.5.1
|
5 |
-
Tested up to: 5.
|
6 |
-
Stable tag: 2.3.
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
This sticky menu plugin will make your menu or header stick to the top of page, when scrolled down and up. Also create a beautiful Welcome bar with it.
|
@@ -259,6 +259,8 @@ After installing the plugin, you’ll have the option to turn on the welcome bar
|
|
259 |
|
260 |
|
261 |
== Changelog ==
|
|
|
|
|
262 |
= 2.3.5 =
|
263 |
Review change
|
264 |
= 2.3.4 =
|
2 |
Contributors: tomeraharon, galdub, premio
|
3 |
Tags:menu, header, sticky menu, sticky header, floating menu, floating navigation menu, navigation menu, navigation, sticky navigation menu, welcome bar, hello bar, top bar, sticky bar, floating bar, notification bar
|
4 |
Requires at least: 3.5.1
|
5 |
+
Tested up to: 5.4
|
6 |
+
Stable tag: 2.3.6
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
This sticky menu plugin will make your menu or header stick to the top of page, when scrolled down and up. Also create a beautiful Welcome bar with it.
|
259 |
|
260 |
|
261 |
== Changelog ==
|
262 |
+
= 2.3.6 =
|
263 |
+
WP 5.4 compatibility, and welcome announcement bar fixed
|
264 |
= 2.3.5 =
|
265 |
Review change
|
266 |
= 2.3.4 =
|
welcome-bar.php
CHANGED
@@ -879,7 +879,7 @@ function mysticky_welcome_bar_frontend(){
|
|
879 |
$mysticky_welcomebar_actionselect_url = 'javascript:void(0)';
|
880 |
}
|
881 |
}
|
882 |
-
if(
|
883 |
if ( $welcomebar['mysticky_welcomebar_position'] == 'top' ) {
|
884 |
$welcomebar_enable_block = "top: -60px";
|
885 |
} else {
|
879 |
$mysticky_welcomebar_actionselect_url = 'javascript:void(0)';
|
880 |
}
|
881 |
}
|
882 |
+
if( isset($welcomebar['mysticky_welcomebar_enable']) ) {
|
883 |
if ( $welcomebar['mysticky_welcomebar_position'] == 'top' ) {
|
884 |
$welcomebar_enable_block = "top: -60px";
|
885 |
} else {
|