Version Description
Minor bug fixes
Download this release
Release Info
Developer | galdub |
Plugin | myStickymenu |
Version | 2.3.2 |
Comparing to | |
See all releases |
Code changes from version 2.3.1 to 2.3.2
- mystickymenu.php +5 -5
- readme.txt +3 -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 |
|
@@ -203,7 +203,7 @@ class MyStickyMenuBackend
|
|
203 |
<li><a href="<?php echo admin_url( 'admin.php?page=my-stickymenu-upgrade' ) ?>"><?php _e('Upgrade to Pro', 'mystickymenu'); ?></a></li>
|
204 |
</ul>
|
205 |
</div>
|
206 |
-
<div
|
207 |
<div class="mystickymenu-heading">
|
208 |
<div class="myStickymenu-header-title">
|
209 |
<h3><?php esc_attr_e('How To Make a Sticky Header', 'mystickymenu'); ?></h3>
|
@@ -1032,10 +1032,10 @@ class MyStickyMenuFrontend
|
|
1032 |
$font_args = array();
|
1033 |
$base_url = "https://fonts.googleapis.com/css";
|
1034 |
$fonts['family']['Lato'] = 'Lato:400,500,600,700';
|
1035 |
-
if ( isset($welcomebar['mysticky_welcomebar_font']) && $welcomebar['mysticky_welcomebar_font'] !='' && !in_array( $
|
1036 |
$fonts['family'][$welcomebar['mysticky_welcomebar_font']] = $welcomebar['mysticky_welcomebar_font'] . ':400,500,600,700';
|
1037 |
}
|
1038 |
-
if ( isset($welcomebar['mysticky_welcomebar_btnfont']) && $welcomebar['mysticky_welcomebar_btnfont'] !='' && !in_array( $
|
1039 |
$fonts['family'][$welcomebar['mysticky_welcomebar_btnfont']] = $welcomebar['mysticky_welcomebar_btnfont'] . ':400,500,600,700';
|
1040 |
}
|
1041 |
|
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.2
|
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.2' );
|
16 |
require_once("mystickymenu-fonts.php");
|
17 |
require_once("welcome-bar.php");
|
18 |
|
203 |
<li><a href="<?php echo admin_url( 'admin.php?page=my-stickymenu-upgrade' ) ?>"><?php _e('Upgrade to Pro', 'mystickymenu'); ?></a></li>
|
204 |
</ul>
|
205 |
</div>
|
206 |
+
<div id="sticky-header-settings" class="sticky-header-content">
|
207 |
<div class="mystickymenu-heading">
|
208 |
<div class="myStickymenu-header-title">
|
209 |
<h3><?php esc_attr_e('How To Make a Sticky Header', 'mystickymenu'); ?></h3>
|
1032 |
$font_args = array();
|
1033 |
$base_url = "https://fonts.googleapis.com/css";
|
1034 |
$fonts['family']['Lato'] = 'Lato:400,500,600,700';
|
1035 |
+
if ( isset($welcomebar['mysticky_welcomebar_font']) && $welcomebar['mysticky_welcomebar_font'] !='' && !in_array( $welcomebar['mysticky_welcomebar_font'], $default_fonts) ) {
|
1036 |
$fonts['family'][$welcomebar['mysticky_welcomebar_font']] = $welcomebar['mysticky_welcomebar_font'] . ':400,500,600,700';
|
1037 |
}
|
1038 |
+
if ( isset($welcomebar['mysticky_welcomebar_btnfont']) && $welcomebar['mysticky_welcomebar_btnfont'] !='' && !in_array( $welcomebar['mysticky_welcomebar_btnfont'], $default_fonts) ) {
|
1039 |
$fonts['family'][$welcomebar['mysticky_welcomebar_btnfont']] = $welcomebar['mysticky_welcomebar_btnfont'] . ':400,500,600,700';
|
1040 |
}
|
1041 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ 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.3
|
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.
|
@@ -258,6 +258,8 @@ After installing the plugin, you’ll have the option to turn on the welcome bar
|
|
258 |
|
259 |
|
260 |
== Changelog ==
|
|
|
|
|
261 |
= 2.3.1 =
|
262 |
If the sticky menu is on, and welcome bar is disabled, google fonts aren't downloaded
|
263 |
= 2.3 =
|
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.3
|
6 |
+
Stable tag: 2.3.2
|
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.
|
258 |
|
259 |
|
260 |
== Changelog ==
|
261 |
+
= 2.3.2 =
|
262 |
+
Minor bug fixes
|
263 |
= 2.3.1 =
|
264 |
If the sticky menu is on, and welcome bar is disabled, google fonts aren't downloaded
|
265 |
= 2.3 =
|