Version Description
Download this release
Release Info
Developer | Magnigenie |
Plugin | WP Responsive Menu |
Version | 3.0.1 |
Comparing to | |
See all releases |
Code changes from version 3.0.0 to 3.0.1
- css/wprmenu.css +0 -0
- fonts/wprmenu.eot +0 -0
- fonts/wprmenu.svg +0 -0
- fonts/wprmenu.ttf +0 -0
- fonts/wprmenu.woff +0 -0
- inc/css/wpr_optionsframework.css +0 -0
- inc/includes/class-options-framework-admin.php +0 -0
- inc/includes/class-options-interface.php +0 -0
- inc/includes/class-options-media-uploader.php +0 -0
- inc/includes/class-options-sanitization.php +0 -0
- inc/js/options-custom.js +0 -0
- inc/options.php +1 -1
- inc/wprmclass.php +11 -17
- js/wprmenu.js +0 -0
- readme.txt +6 -1
- wp-responsive-menu.php +1 -1
css/wprmenu.css
CHANGED
File without changes
|
fonts/wprmenu.eot
CHANGED
File without changes
|
fonts/wprmenu.svg
CHANGED
File without changes
|
fonts/wprmenu.ttf
CHANGED
File without changes
|
fonts/wprmenu.woff
CHANGED
File without changes
|
inc/css/wpr_optionsframework.css
CHANGED
File without changes
|
inc/includes/class-options-framework-admin.php
CHANGED
File without changes
|
inc/includes/class-options-interface.php
CHANGED
File without changes
|
inc/includes/class-options-media-uploader.php
CHANGED
File without changes
|
inc/includes/class-options-sanitization.php
CHANGED
File without changes
|
inc/js/options-custom.js
CHANGED
File without changes
|
inc/options.php
CHANGED
@@ -108,7 +108,7 @@ function wpr_optionsframework_options() {
|
|
108 |
$options[] = array( 'name' => __( 'Large screen view', 'wprmenu' ),
|
109 |
'desc' => __( 'Turn on display of menu on computers too.', 'wprmenu' ),
|
110 |
'id' => 'desktopview',
|
111 |
-
'std' => '
|
112 |
'type' => 'checkbox' );
|
113 |
|
114 |
$options[] = array( 'name' => __( 'Live preview', 'wprmenu' ),
|
108 |
$options[] = array( 'name' => __( 'Large screen view', 'wprmenu' ),
|
109 |
'desc' => __( 'Turn on display of menu on computers too.', 'wprmenu' ),
|
110 |
'id' => 'desktopview',
|
111 |
+
'std' => '0',
|
112 |
'type' => 'checkbox' );
|
113 |
|
114 |
$options[] = array( 'name' => __( 'Live preview', 'wprmenu' ),
|
inc/wprmclass.php
CHANGED
@@ -164,10 +164,6 @@ class MgWprm {
|
|
164 |
}
|
165 |
';
|
166 |
|
167 |
-
if( $options['hide'] != '' ):
|
168 |
-
$inlinecss .= $options['hide'].'{ display: none!important; }';
|
169 |
-
endif;
|
170 |
-
|
171 |
if( $options['menu_symbol_pos'] == 'left' ) :
|
172 |
$inlinecss .= 'div.wprmenu_bar div.hamburger{padding-right: 6px !important;}';
|
173 |
endif;
|
@@ -182,11 +178,6 @@ class MgWprm {
|
|
182 |
}
|
183 |
';
|
184 |
endif;
|
185 |
-
$inlinecss .= '@media only screen and ( min-width: '.$from_width.'px ) {';
|
186 |
-
$inlinecss .= '#mg-wprm-wrap.cbp-spmenu-right, #mg-wprm-wrap.cbp-spmenu-left, #mg-wprm-wrap.cbp-spmenu-right.custom, #mg-wprm-wrap.cbp-spmenu-left.custom {
|
187 |
-
overflow-y: auto;
|
188 |
-
}';
|
189 |
-
$inlinecss .= '}';
|
190 |
|
191 |
$inlinecss .= '
|
192 |
#wprmenu_menu.left {
|
@@ -237,14 +228,17 @@ class MgWprm {
|
|
237 |
$from_width = $from_width;
|
238 |
}
|
239 |
$inlinecss .= '@media only screen and ( max-width: '.$from_width.'px ) {';
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
|
|
|
|
|
|
248 |
|
249 |
$inlinecss .= '}';
|
250 |
|
164 |
}
|
165 |
';
|
166 |
|
|
|
|
|
|
|
|
|
167 |
if( $options['menu_symbol_pos'] == 'left' ) :
|
168 |
$inlinecss .= 'div.wprmenu_bar div.hamburger{padding-right: 6px !important;}';
|
169 |
endif;
|
178 |
}
|
179 |
';
|
180 |
endif;
|
|
|
|
|
|
|
|
|
|
|
181 |
|
182 |
$inlinecss .= '
|
183 |
#wprmenu_menu.left {
|
228 |
$from_width = $from_width;
|
229 |
}
|
230 |
$inlinecss .= '@media only screen and ( max-width: '.$from_width.'px ) {';
|
231 |
+
if( $options['hide'] != '' ):
|
232 |
+
$inlinecss .= $options['hide'].'{ display: none!important; }';
|
233 |
+
endif;
|
234 |
+
$inlinecss .= '.custMenu #custom_menu_icon {
|
235 |
+
display: block !important;
|
236 |
+
}';
|
237 |
+
if( $options["menu_type"] == 'default' ) :
|
238 |
+
$inlinecss .= 'html { padding-top: 42px!important; }';
|
239 |
+
endif;
|
240 |
+
$inlinecss .= '#wprmenu_bar { display: block !important; }
|
241 |
+
div#wpadminbar { position: fixed; }';
|
242 |
|
243 |
$inlinecss .= '}';
|
244 |
|
js/wprmenu.js
CHANGED
File without changes
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: WordPress Responsive Menu, Genesis responsive menu, Genesis Mobile Menu, T
|
|
4 |
Requires at least: 3.0
|
5 |
Requires PHP: 5.4
|
6 |
Tested up to: 4.8.2
|
7 |
-
Stable tag: 3.0
|
8 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=sagar.seth9@gmail.com&item_name=WP%20Responsive%20Menu&return=http://magnigenie.com
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -67,6 +67,11 @@ If you have any suggestions for a new plugin, feel free to email us at info@mag
|
|
67 |
|
68 |
== ChangeLog ==
|
69 |
|
|
|
|
|
|
|
|
|
|
|
70 |
= Version 3.0.0
|
71 |
|
72 |
* Updated admin and frontend UI.
|
4 |
Requires at least: 3.0
|
5 |
Requires PHP: 5.4
|
6 |
Tested up to: 4.8.2
|
7 |
+
Stable tag: 3.0.1
|
8 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=sagar.seth9@gmail.com&item_name=WP%20Responsive%20Menu&return=http://magnigenie.com
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
67 |
|
68 |
== ChangeLog ==
|
69 |
|
70 |
+
= Version 3.0.1
|
71 |
+
|
72 |
+
* Fixed issue with hide elements on mobile.
|
73 |
+
* Made large screen view to be disabled by default.
|
74 |
+
|
75 |
= Version 3.0.0
|
76 |
|
77 |
* Updated admin and frontend UI.
|
wp-responsive-menu.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP Responsive Menu
|
4 |
Plugin URI: http://magnigenie.com/wp-responsive-menu-mobile-menu-plugin-wordpress/
|
5 |
Description: WP Responsive Menu is mobile menu plugin that lets you add a highly customizable responsive menu to any WordPress site in no time.
|
6 |
-
Version: 3.0.
|
7 |
Author: MagniGenie
|
8 |
Author URI: http://magnigenie.com
|
9 |
License: GPLv2 or later
|
3 |
Plugin Name: WP Responsive Menu
|
4 |
Plugin URI: http://magnigenie.com/wp-responsive-menu-mobile-menu-plugin-wordpress/
|
5 |
Description: WP Responsive Menu is mobile menu plugin that lets you add a highly customizable responsive menu to any WordPress site in no time.
|
6 |
+
Version: 3.0.1
|
7 |
Author: MagniGenie
|
8 |
Author URI: http://magnigenie.com
|
9 |
License: GPLv2 or later
|