Version Description
- Fix: Mobile Sub Menu - Force Width setting
Download this release
Release Info
Developer | megamenu |
Plugin | Max Mega Menu |
Version | 2.7.1 |
Comparing to | |
See all releases |
Code changes from version 2.7 to 2.7.1
- js/maxmegamenu.js +2 -1
- megamenu.php +2 -2
- readme.txt +8 -3
js/maxmegamenu.js
CHANGED
@@ -580,7 +580,8 @@
|
|
580 |
};
|
581 |
|
582 |
plugin.toggleBarForceWidth = function() {
|
583 |
-
|
|
|
584 |
var submenu_offset = $toggle_bar.offset();
|
585 |
var target_offset = $(plugin.settings.mobile_force_width).offset();
|
586 |
|
580 |
};
|
581 |
|
582 |
plugin.toggleBarForceWidth = function() {
|
583 |
+
|
584 |
+
if ($(plugin.settings.mobile_force_width).length && ( plugin.settings.effect_mobile == 'slide' || plugin.settings.effect_mobile == 'disabled' ) ) {
|
585 |
var submenu_offset = $toggle_bar.offset();
|
586 |
var target_offset = $(plugin.settings.mobile_force_width).offset();
|
587 |
|
megamenu.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin Name: Max Mega Menu
|
5 |
* Plugin URI: https://www.megamenu.com
|
6 |
* Description: An easy to use mega menu plugin. Written the WordPress way.
|
7 |
-
* Version: 2.7
|
8 |
* Author: megamenu.com
|
9 |
* Author URI: https://www.megamenu.com
|
10 |
* License: GPL-2.0+
|
@@ -36,7 +36,7 @@ final class Mega_Menu {
|
|
36 |
/**
|
37 |
* @var string
|
38 |
*/
|
39 |
-
public $version = '2.7';
|
40 |
|
41 |
|
42 |
/**
|
4 |
* Plugin Name: Max Mega Menu
|
5 |
* Plugin URI: https://www.megamenu.com
|
6 |
* Description: An easy to use mega menu plugin. Written the WordPress way.
|
7 |
+
* Version: 2.7.1
|
8 |
* Author: megamenu.com
|
9 |
* Author URI: https://www.megamenu.com
|
10 |
* License: GPL-2.0+
|
36 |
/**
|
37 |
* @var string
|
38 |
*/
|
39 |
+
public $version = '2.7.1';
|
40 |
|
41 |
|
42 |
/**
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: megamenu
|
|
3 |
Tags: menu, megamenu, mega menu, navigation, widget, dropdown menu, drag and drop, mobile, responsive, retina, theme editor, widget, shortcode, sidebar, icons, dashicons
|
4 |
Requires at least: 4.9
|
5 |
Tested up to: 5.1
|
6 |
-
Stable tag: 2.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -21,7 +21,8 @@ Documentation & Demo: [https://www.megamenu.com](https://www.megamenu.com)
|
|
21 |
|
22 |
* Builds upon the standard WordPress menus system
|
23 |
* Supports multiple menu locations each with their own configuration
|
24 |
-
*
|
|
|
25 |
* Display WordPress Widgets in your menu
|
26 |
* Customise the styling of your menus using a built in theme editor
|
27 |
* Supports Flyout (traditional) or Mega Menu sub menu styles
|
@@ -109,6 +110,10 @@ See https://www.megamenu.com for more screenshots
|
|
109 |
|
110 |
== Changelog ==
|
111 |
|
|
|
|
|
|
|
|
|
112 |
= 2.7 =
|
113 |
|
114 |
* Change: No longer use ":after" pseudo element to display arrows. Use 'span.mega-indicator' instead. This allows the arrows to control the sub menu independantly of the menu text. Custom CSS targeting `a.mega-menu-link:after` should be updated to target `a.mega-menu-link > span.mega-indicator:after`.
|
@@ -128,7 +133,7 @@ See https://www.megamenu.com for more screenshots
|
|
128 |
* Fix: Select2 conflict with WP Job Manager
|
129 |
* Fix: Mobile sub menu animation sometimes "jumps" when using slide animation
|
130 |
|
131 |
-
We hope you enjoy Max Mega Menu and the new updates. If you have a spare moment please leave us a quick [review](https://wordpress.org/support/plugin/megamenu/reviews/#new-post). Thanks!
|
132 |
|
133 |
= 2.6 =
|
134 |
|
3 |
Tags: menu, megamenu, mega menu, navigation, widget, dropdown menu, drag and drop, mobile, responsive, retina, theme editor, widget, shortcode, sidebar, icons, dashicons
|
4 |
Requires at least: 4.9
|
5 |
Tested up to: 5.1
|
6 |
+
Stable tag: 2.7
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
21 |
|
22 |
* Builds upon the standard WordPress menus system
|
23 |
* Supports multiple menu locations each with their own configuration
|
24 |
+
* Off canvas (slide in from left or right) or standard drop down mobile menu
|
25 |
+
* Organise your sub menus into rows and columns using the Grid Layout builder
|
26 |
* Display WordPress Widgets in your menu
|
27 |
* Customise the styling of your menus using a built in theme editor
|
28 |
* Supports Flyout (traditional) or Mega Menu sub menu styles
|
110 |
|
111 |
== Changelog ==
|
112 |
|
113 |
+
= 2.7.1 =
|
114 |
+
|
115 |
+
* Fix: Mobile Sub Menu - Force Width setting
|
116 |
+
|
117 |
= 2.7 =
|
118 |
|
119 |
* Change: No longer use ":after" pseudo element to display arrows. Use 'span.mega-indicator' instead. This allows the arrows to control the sub menu independantly of the menu text. Custom CSS targeting `a.mega-menu-link:after` should be updated to target `a.mega-menu-link > span.mega-indicator:after`.
|
133 |
* Fix: Select2 conflict with WP Job Manager
|
134 |
* Fix: Mobile sub menu animation sometimes "jumps" when using slide animation
|
135 |
|
136 |
+
We hope you enjoy Max Mega Menu and the new updates. If you need to report an issue with the update please post on our [support forums](https://wordpress.org/support/plugin/megamenu/). If you have a spare moment please leave us a quick [review](https://wordpress.org/support/plugin/megamenu/reviews/#new-post). Thanks!
|
137 |
|
138 |
= 2.6 =
|
139 |
|