Version Description
(25th May 2022) = * Bug: Fixed conflict issues with Import Eventbrite Events plugin * Enhancement: Added rmp_nav_item_class hook to update nav item classes * Enhancement: Removed unused resources
Download this release
Release Info
Developer | expresstech |
Plugin | Responsive Menu |
Version | 4.1.11 |
Comparing to | |
See all releases |
Code changes from version 4.1.10 to 4.1.11
- readme.txt +7 -2
- responsive-menu.php +2 -2
- v4.0.0/assets/admin/scss/admin.css +6 -0
- v4.0.0/inc/classes/class-walker.php +2 -0
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: expresstech, responsivemenu, imvarunkmr, surajkumarsingh, infosatech
|
3 |
Tags: responsive, mega menu, navigation, mobile, hamburger
|
4 |
Requires at least: 3.6
|
5 |
-
Tested up to:
|
6 |
-
Stable tag: 4.1.
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -120,6 +120,11 @@ To view our FAQ, please go to [https://responsive.menu/faq/](https://responsive.
|
|
120 |
|
121 |
== Changelog ==
|
122 |
|
|
|
|
|
|
|
|
|
|
|
123 |
= 4.1.10 (30th Mar 2022) =
|
124 |
* Bug: Fixed issue with submenu font-wieght
|
125 |
* Bug: Fixed issue with svg icons
|
2 |
Contributors: expresstech, responsivemenu, imvarunkmr, surajkumarsingh, infosatech
|
3 |
Tags: responsive, mega menu, navigation, mobile, hamburger
|
4 |
Requires at least: 3.6
|
5 |
+
Tested up to: 6.0
|
6 |
+
Stable tag: 4.1.11
|
7 |
Requires PHP: 5.6
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
120 |
|
121 |
== Changelog ==
|
122 |
|
123 |
+
= 4.1.11 (25th May 2022) =
|
124 |
+
* Bug: Fixed conflict issues with Import Eventbrite Events plugin
|
125 |
+
* Enhancement: Added rmp_nav_item_class hook to update nav item classes
|
126 |
+
* Enhancement: Removed unused resources
|
127 |
+
|
128 |
= 4.1.10 (30th Mar 2022) =
|
129 |
* Bug: Fixed issue with submenu font-wieght
|
130 |
* Bug: Fixed issue with svg icons
|
responsive-menu.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: Responsive Menu
|
5 |
Plugin URI: https://expresstech.io
|
6 |
Description: Highly Customisable Responsive Menu Plugin for WordPress
|
7 |
-
Version: 4.1.
|
8 |
Author: ExpressTech
|
9 |
Text Domain: responsive-menu
|
10 |
Author URI: https://responsive.menu
|
@@ -16,7 +16,7 @@ Tags: responsive, menu, responsive menu, mega menu, max mega menu, max menu
|
|
16 |
* Constant as plugin version.
|
17 |
*/
|
18 |
if ( ! defined( 'RMP_PLUGIN_VERSION' ) ) {
|
19 |
-
define( 'RMP_PLUGIN_VERSION', '4.1.
|
20 |
}
|
21 |
|
22 |
define( 'RESPONSIVE_MENU_URL', plugin_dir_url( __FILE__ ) );
|
4 |
Plugin Name: Responsive Menu
|
5 |
Plugin URI: https://expresstech.io
|
6 |
Description: Highly Customisable Responsive Menu Plugin for WordPress
|
7 |
+
Version: 4.1.11
|
8 |
Author: ExpressTech
|
9 |
Text Domain: responsive-menu
|
10 |
Author URI: https://responsive.menu
|
16 |
* Constant as plugin version.
|
17 |
*/
|
18 |
if ( ! defined( 'RMP_PLUGIN_VERSION' ) ) {
|
19 |
+
define( 'RMP_PLUGIN_VERSION', '4.1.11' );
|
20 |
}
|
21 |
|
22 |
define( 'RESPONSIVE_MENU_URL', plugin_dir_url( __FILE__ ) );
|
v4.0.0/assets/admin/scss/admin.css
CHANGED
@@ -416,6 +416,12 @@ input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus
|
|
416 |
padding: 0.5rem 2rem;
|
417 |
width: max-content;
|
418 |
margin: 0 -1px;
|
|
|
|
|
|
|
|
|
|
|
|
|
419 |
}
|
420 |
|
421 |
.rmp-dialog-overlay .nav-tab-active,
|
416 |
padding: 0.5rem 2rem;
|
417 |
width: max-content;
|
418 |
margin: 0 -1px;
|
419 |
+
font-weight: 400;
|
420 |
+
}
|
421 |
+
|
422 |
+
.rmp-accordion-container .rmp-tab-items .ui-tabs-tab, .rmp-accordion-container .nav-tab-wrapper .ui-tabs-tab {
|
423 |
+
background: transparent;
|
424 |
+
border: transparent;
|
425 |
}
|
426 |
|
427 |
.rmp-dialog-overlay .nav-tab-active,
|
v4.0.0/inc/classes/class-walker.php
CHANGED
@@ -122,6 +122,8 @@ class Walker extends \Walker_Nav_Menu {
|
|
122 |
$class_names = '';
|
123 |
}
|
124 |
|
|
|
|
|
125 |
// Start menu item and set classes & ID.
|
126 |
$output .= sprintf(
|
127 |
'<li id="rmp-menu-item-%s" %s role="none">',
|
122 |
$class_names = '';
|
123 |
}
|
124 |
|
125 |
+
$class_names = apply_filters( 'rmp_nav_item_class', $class_names, $item );
|
126 |
+
|
127 |
// Start menu item and set classes & ID.
|
128 |
$output .= sprintf(
|
129 |
'<li id="rmp-menu-item-%s" %s role="none">',
|