Version Description
- Fix! - Fix Menu settings and widgetized areas in translated websites
- Fix! - Fix Walker Menu filter
Download this release
Release Info
Developer | takanakui |
Plugin | WP Mobile Menu |
Version | 2.8.2.2 |
Comparing to | |
See all releases |
Code changes from version 2.8.2.1 to 2.8.2.2
includes/class-wp-mobile-menu-core.php
CHANGED
@@ -406,7 +406,7 @@ class WP_Mobile_Menu_Core
|
|
406 |
?>
|
407 |
<ul class="rightmtop">
|
408 |
<?php
|
409 |
-
dynamic_sidebar( '
|
410 |
?>
|
411 |
</ul>
|
412 |
<?php
|
@@ -446,7 +446,7 @@ class WP_Mobile_Menu_Core
|
|
446 |
?>
|
447 |
<ul class="rightmbottom">
|
448 |
<?php
|
449 |
-
dynamic_sidebar( '
|
450 |
?>
|
451 |
</ul>
|
452 |
<?php
|
@@ -491,7 +491,7 @@ class WP_Mobile_Menu_Core
|
|
491 |
?>
|
492 |
<ul class="leftmtop">
|
493 |
<?php
|
494 |
-
dynamic_sidebar( '
|
495 |
?>
|
496 |
</ul>
|
497 |
<?php
|
@@ -531,7 +531,7 @@ class WP_Mobile_Menu_Core
|
|
531 |
?>
|
532 |
<ul class="leftmbottom">
|
533 |
<?php
|
534 |
-
dynamic_sidebar( '
|
535 |
?>
|
536 |
</ul>
|
537 |
<?php
|
406 |
?>
|
407 |
<ul class="rightmtop">
|
408 |
<?php
|
409 |
+
dynamic_sidebar( 'mobmrighttop' );
|
410 |
?>
|
411 |
</ul>
|
412 |
<?php
|
446 |
?>
|
447 |
<ul class="rightmbottom">
|
448 |
<?php
|
449 |
+
dynamic_sidebar( 'mobmrightbottom' );
|
450 |
?>
|
451 |
</ul>
|
452 |
<?php
|
491 |
?>
|
492 |
<ul class="leftmtop">
|
493 |
<?php
|
494 |
+
dynamic_sidebar( 'mobmlefttop' );
|
495 |
?>
|
496 |
</ul>
|
497 |
<?php
|
531 |
?>
|
532 |
<ul class="leftmbottom">
|
533 |
<?php
|
534 |
+
dynamic_sidebar( 'mobmleftbottom' );
|
535 |
?>
|
536 |
</ul>
|
537 |
<?php
|
includes/class-wp-mobile-menu-options.php
CHANGED
@@ -103,24 +103,31 @@ class WP_Mobile_Menu_Options
|
|
103 |
// Create General Options panel.
|
104 |
$general_tab2 = $panel->createTab( array(
|
105 |
'name' => __( 'General Options', 'mobile-menu' ),
|
|
|
106 |
) );
|
107 |
$general_tab = $panel->createTab( array(
|
108 |
'name' => __( 'Header', 'mobile-menu' ),
|
|
|
109 |
) );
|
110 |
$general_tab = $panel->createTab( array(
|
111 |
'name' => __( 'Footer', 'mobile-menu' ),
|
|
|
112 |
) );
|
113 |
$general_tab = $panel->createTab( array(
|
114 |
'name' => __( 'Left Menu', 'mobile-menu' ),
|
|
|
115 |
) );
|
116 |
$general_tab = $panel->createTab( array(
|
117 |
'name' => __( 'Right Menu', 'mobile-menu' ),
|
|
|
118 |
) );
|
119 |
$general_tab = $panel->createTab( array(
|
120 |
'name' => __( 'WooCommerce', 'mobile-menu' ),
|
|
|
121 |
) );
|
122 |
$general_tab = $panel->createTab( array(
|
123 |
'name' => __( 'Colors', 'mobile-menu' ),
|
|
|
124 |
) );
|
125 |
$general_tab = $general_tab2;
|
126 |
$this->create_footer_options_upsell( $panel, $titan );
|
103 |
// Create General Options panel.
|
104 |
$general_tab2 = $panel->createTab( array(
|
105 |
'name' => __( 'General Options', 'mobile-menu' ),
|
106 |
+
'id' => 'general-options',
|
107 |
) );
|
108 |
$general_tab = $panel->createTab( array(
|
109 |
'name' => __( 'Header', 'mobile-menu' ),
|
110 |
+
'id' => 'header',
|
111 |
) );
|
112 |
$general_tab = $panel->createTab( array(
|
113 |
'name' => __( 'Footer', 'mobile-menu' ),
|
114 |
+
'id' => 'footer',
|
115 |
) );
|
116 |
$general_tab = $panel->createTab( array(
|
117 |
'name' => __( 'Left Menu', 'mobile-menu' ),
|
118 |
+
'id' => 'left-menu',
|
119 |
) );
|
120 |
$general_tab = $panel->createTab( array(
|
121 |
'name' => __( 'Right Menu', 'mobile-menu' ),
|
122 |
+
'id' => 'right-menu',
|
123 |
) );
|
124 |
$general_tab = $panel->createTab( array(
|
125 |
'name' => __( 'WooCommerce', 'mobile-menu' ),
|
126 |
+
'id' => 'woocommerce',
|
127 |
) );
|
128 |
$general_tab = $panel->createTab( array(
|
129 |
'name' => __( 'Colors', 'mobile-menu' ),
|
130 |
+
'id' => 'colors',
|
131 |
) );
|
132 |
$general_tab = $general_tab2;
|
133 |
$this->create_footer_options_upsell( $panel, $titan );
|
includes/class-wp-mobile-menu-walker-nav-menu.php
CHANGED
@@ -65,7 +65,7 @@ class WP_Mobile_Menu_Walker_Nav_Menu extends Walker_Nav_Menu
|
|
65 |
if ( $this->footer_li_class !== '' ) {
|
66 |
}
|
67 |
$output .= apply_filters(
|
68 |
-
'
|
69 |
$item_output,
|
70 |
$item,
|
71 |
$depth,
|
65 |
if ( $this->footer_li_class !== '' ) {
|
66 |
}
|
67 |
$output .= apply_filters(
|
68 |
+
'walker_nav_menu_start_el',
|
69 |
$item_output,
|
70 |
$item,
|
71 |
$depth,
|
mobmenu.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/**
|
4 |
* Plugin Name: Mobile Menu
|
5 |
* Description: An easy to use WordPress responsive mobile menu. Keep your mobile visitors engaged.
|
6 |
-
* Version: 2.8.2.
|
7 |
* Plugin URI: https://www.wpmobilemenu.com/
|
8 |
* Author: Rui Guerreiro
|
9 |
* Author URI: https://www.jedipress.com/
|
@@ -16,7 +16,7 @@
|
|
16 |
if ( !defined( 'ABSPATH' ) ) {
|
17 |
die;
|
18 |
}
|
19 |
-
define( 'WP_MOBILE_MENU_VERSION', '2.8.2.
|
20 |
define( 'WP_MOBILE_MENU_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
|
21 |
define( 'WP_MOBILE_MENU_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
22 |
if ( !class_exists( 'WP_Mobile_Menu' ) ) {
|
3 |
/**
|
4 |
* Plugin Name: Mobile Menu
|
5 |
* Description: An easy to use WordPress responsive mobile menu. Keep your mobile visitors engaged.
|
6 |
+
* Version: 2.8.2.2
|
7 |
* Plugin URI: https://www.wpmobilemenu.com/
|
8 |
* Author: Rui Guerreiro
|
9 |
* Author URI: https://www.jedipress.com/
|
16 |
if ( !defined( 'ABSPATH' ) ) {
|
17 |
die;
|
18 |
}
|
19 |
+
define( 'WP_MOBILE_MENU_VERSION', '2.8.2.2' );
|
20 |
define( 'WP_MOBILE_MENU_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
|
21 |
define( 'WP_MOBILE_MENU_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
22 |
if ( !class_exists( 'WP_Mobile_Menu' ) ) {
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ link: http://profiles.wordpress.org/takanakui
|
|
4 |
Tags: mobile, navigation, responsive, menu, responsive menu, mobile menu, tablet menu, hamburger menu, hamburger, wordpress responsive menu, wordpress mobile menu, canvas menu
|
5 |
Requires at least: 4.4
|
6 |
Tested up to: 5.7
|
7 |
-
Stable tag: 2.8.2.
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -70,6 +70,7 @@ No coding knowledge is required. Works with all WordPress responsive themes.
|
|
70 |
|
71 |
= Related Plugins =
|
72 |
* [Menu Image](https://wordpress.org/plugins/menu-image/): Easily add an image or icon in a menu item. Creating a better website menu.
|
|
|
73 |
|
74 |
###I need help or I have a doubt, check our Support
|
75 |
* Great Support, our free support is above the average. Only the Premium support is better and faster.
|
@@ -133,6 +134,11 @@ Not available at the moment
|
|
133 |
== Changelog ==
|
134 |
|
135 |
|
|
|
|
|
|
|
|
|
|
|
136 |
= 2.8.2.1 =
|
137 |
* Fix! - Change code that only worked with PHP 7.4
|
138 |
|
4 |
Tags: mobile, navigation, responsive, menu, responsive menu, mobile menu, tablet menu, hamburger menu, hamburger, wordpress responsive menu, wordpress mobile menu, canvas menu
|
5 |
Requires at least: 4.4
|
6 |
Tested up to: 5.7
|
7 |
+
Stable tag: 2.8.2.2
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
70 |
|
71 |
= Related Plugins =
|
72 |
* [Menu Image](https://wordpress.org/plugins/menu-image/): Easily add an image or icon in a menu item. Creating a better website menu.
|
73 |
+
* [Pay With Stripe](https://wordpress.org/plugins/payments-stripe-gateway/): Sell your products on your WordPress website without any other complex e-commerce plugin.
|
74 |
|
75 |
###I need help or I have a doubt, check our Support
|
76 |
* Great Support, our free support is above the average. Only the Premium support is better and faster.
|
134 |
== Changelog ==
|
135 |
|
136 |
|
137 |
+
|
138 |
+
= 2.8.2.2 =
|
139 |
+
* Fix! - Fix Menu settings and widgetized areas in translated websites
|
140 |
+
* Fix! - Fix Walker Menu filter
|
141 |
+
|
142 |
= 2.8.2.1 =
|
143 |
* Fix! - Change code that only worked with PHP 7.4
|
144 |
|