Version Description
- Fix! - Retina issue
- Fix! - Gap on the right side when using the Slideout Push Content
Download this release
Release Info
Developer | takanakui |
Plugin | WP Mobile Menu |
Version | 2.7.4.3.1 |
Comparing to | |
See all releases |
Code changes from version 2.7.4.3 to 2.7.4.3.1
- includes/class-wp-mobile-menu-core.php +5 -7
- includes/css/mobmenu.css +0 -14
- includes/dynamic-style.php +2 -1
- mobmenu.php +1 -1
- readme.txt +5 -2
includes/class-wp-mobile-menu-core.php
CHANGED
@@ -620,17 +620,15 @@ class WP_Mobile_Menu_Core
|
|
620 |
|
621 |
$output = '<div class="mob-menu-logo-holder">' . $logo_url;
|
622 |
$header_branding = $titan->getOption( 'header_branding' );
|
|
|
623 |
if ( ('logo' === $header_branding || 'logo-text' === $header_branding || 'text-logo' === $header_branding) && '' !== $logo_img ) {
|
624 |
-
|
625 |
-
|
626 |
-
if (
|
627 |
-
$logo_img = $logo_img_retina;
|
628 |
$logo_output .= '<img class="mob-retina-logo" src="' . $logo_img_retina . '" alt=" ' . __( 'Logo Header Menu', 'mobile-menu' ) . '">';
|
629 |
-
} else {
|
630 |
-
$logo_output .= '<img class="mob-standard-logo" src="' . $logo_img . '" alt=" ' . __( 'Logo Header Menu', 'mobile-menu' ) . '">';
|
631 |
}
|
632 |
-
|
633 |
}
|
|
|
634 |
$header_text = '<span>' . $header_text . '</span>';
|
635 |
if ( $header_branding ) {
|
636 |
switch ( $header_branding ) {
|
620 |
|
621 |
$output = '<div class="mob-menu-logo-holder">' . $logo_url;
|
622 |
$header_branding = $titan->getOption( 'header_branding' );
|
623 |
+
|
624 |
if ( ('logo' === $header_branding || 'logo-text' === $header_branding || 'text-logo' === $header_branding) && '' !== $logo_img ) {
|
625 |
+
$logo_output .= '<img class="mob-standard-logo" src="' . $logo_img . '" alt=" ' . __( 'Logo Header Menu', 'mobile-menu' ) . '">';
|
626 |
+
// If there is a retina logo.
|
627 |
+
if ( isset( $logo_img_retina ) ) {
|
|
|
628 |
$logo_output .= '<img class="mob-retina-logo" src="' . $logo_img_retina . '" alt=" ' . __( 'Logo Header Menu', 'mobile-menu' ) . '">';
|
|
|
|
|
629 |
}
|
|
|
630 |
}
|
631 |
+
|
632 |
$header_text = '<span>' . $header_text . '</span>';
|
633 |
if ( $header_branding ) {
|
634 |
switch ( $header_branding ) {
|
includes/css/mobmenu.css
CHANGED
@@ -1,16 +1,3 @@
|
|
1 |
-
/* Adds a transition and the resting translate state */
|
2 |
-
.mob-menu-slideout .mobmenu-push-wrap, .mob-menu-slideout .mob-menu-header-holder {
|
3 |
-
-webkit-transform: translate(0, 0);
|
4 |
-
-moz-transform: translate(0, 0);
|
5 |
-
-ms-transform: translate(0, 0);
|
6 |
-
-o-transform: translate(0, 0);
|
7 |
-
transform: translate(0, 0);
|
8 |
-
-webkit-transition: -webkit-transform .5s;
|
9 |
-
-moz-transition: -moz-transform .5s;
|
10 |
-
-ms-transition: -ms-transform .5s;
|
11 |
-
-o-transition: -o-transform .5s;
|
12 |
-
transition: transform .5s;
|
13 |
-
}
|
14 |
.mob-menu-overlay .mobmenu-panel {
|
15 |
opacity: 0;
|
16 |
visibility: hidden;
|
@@ -225,7 +212,6 @@ body.admin-bar .mobmenu, body.admin-bar .mobmenu-panel {
|
|
225 |
}
|
226 |
.mob-menu-header-holder {
|
227 |
font-weight:bold;
|
228 |
-
position:fixed;
|
229 |
top:0px;
|
230 |
right: 0px;
|
231 |
color:#000;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
.mob-menu-overlay .mobmenu-panel {
|
2 |
opacity: 0;
|
3 |
visibility: hidden;
|
212 |
}
|
213 |
.mob-menu-header-holder {
|
214 |
font-weight:bold;
|
|
|
215 |
top:0px;
|
216 |
right: 0px;
|
217 |
color:#000;
|
includes/dynamic-style.php
CHANGED
@@ -153,7 +153,7 @@ if ( $titan->getOption( 'logo_img_retina' ) ) {
|
|
153 |
?>
|
154 |
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
|
155 |
|
156 |
-
.mob-retina-logo {
|
157 |
display: inline-block;
|
158 |
}
|
159 |
.mob-standard-logo {
|
@@ -281,6 +281,7 @@ if ( '' !== $titan->getOption( 'hide_elements' ) ) {
|
|
281 |
@media only screen and (max-width:<?php
|
282 |
echo $trigger_res ;
|
283 |
?>px) {
|
|
|
284 |
<?php
|
285 |
?>
|
286 |
|
153 |
?>
|
154 |
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
|
155 |
|
156 |
+
.mob-menu-logo-holder .mob-retina-logo {
|
157 |
display: inline-block;
|
158 |
}
|
159 |
.mob-standard-logo {
|
281 |
@media only screen and (max-width:<?php
|
282 |
echo $trigger_res ;
|
283 |
?>px) {
|
284 |
+
|
285 |
<?php
|
286 |
?>
|
287 |
|
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.7.4.3
|
7 |
* Plugin URI: https://www.wpmobilemenu.com/
|
8 |
* Author: Takanakui
|
9 |
* Author URI: https://www.jedipress.com/
|
3 |
/**
|
4 |
* Plugin Name: Mobile Menu
|
5 |
* Description: An easy to use WordPress responsive mobile menu. Keep your mobile visitors engaged.
|
6 |
+
* Version: 2.7.4.3.1
|
7 |
* Plugin URI: https://www.wpmobilemenu.com/
|
8 |
* Author: Takanakui
|
9 |
* Author URI: https://www.jedipress.com/
|
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.0
|
6 |
Tested up to: 5.2
|
7 |
-
Stable tag: 2.7.4.3
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
@@ -108,7 +108,7 @@ Yes! WP Mobile Menu will work with any theme, but may require our help to hide t
|
|
108 |
You can send us an email using the contact form available on the following [link](https://www.wpmobilemenu.com/support-contact/)
|
109 |
|
110 |
= Is WP Mobile Menu Free? =
|
111 |
-
There are two versions of WP Mobile Menu. One is free and another is Premium. Only being able to monetize the plugin is possible to provide constant updates and a good
|
112 |
The Premium versions have some more advanced features in general and for Ecommerce websites that are not available in the free version.
|
113 |
|
114 |
== Upgrade Notice ==
|
@@ -117,6 +117,9 @@ Not available at the moment
|
|
117 |
== Changelog ==
|
118 |
|
119 |
|
|
|
|
|
|
|
120 |
= 2.7.4.3 =
|
121 |
* New! - Autoclose opened submenus when opening a new one
|
122 |
* New! - Include plugin version in the bottom of the admin options
|
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.0
|
6 |
Tested up to: 5.2
|
7 |
+
Stable tag: 2.7.4.3.1
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
108 |
You can send us an email using the contact form available on the following [link](https://www.wpmobilemenu.com/support-contact/)
|
109 |
|
110 |
= Is WP Mobile Menu Free? =
|
111 |
+
There are two versions of WP Mobile Menu. One is free and another is Premium. Only being able to monetize the plugin is possible to provide constant updates and a good support on the Free version.
|
112 |
The Premium versions have some more advanced features in general and for Ecommerce websites that are not available in the free version.
|
113 |
|
114 |
== Upgrade Notice ==
|
117 |
== Changelog ==
|
118 |
|
119 |
|
120 |
+
= 2.7.4.3.1 =
|
121 |
+
* Fix! - Retina issue
|
122 |
+
* Fix! - Gap on the right side when using the Slideout Push Content
|
123 |
= 2.7.4.3 =
|
124 |
* New! - Autoclose opened submenus when opening a new one
|
125 |
* New! - Include plugin version in the bottom of the admin options
|