responsivemenu
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] This plugin is shitPlease tell me you tested everything and validated it all and rigorously tested it all on a development site first and did not put this straight onto a live site without doing so?
Forum: Plugins
In reply to: [W3 Total Cache] getting a warningHi there,
I have the same issue here.
Although this works, this involves editing the core files which means I will have to do this on every plugin update.
Can the author step in and advise why this is happening and if it will be fixed in a future version?
Only difference with my sites that do work is that I am running PHP 7 with Fast CGI if that makes any difference.
All the best
Hi Vitago,
Can you explain exactly what it is you are expecting to see on that site and what you are not seeing as I can see some “cart-menu” links added to my plugin but Im not sure what I am specifically looking for.
If you can give me step by step instructions it will help out massively.
All the best
Brian,
Same issue for you as the original poster – you need a more precise CSS selector.
Basically my plugin no longer uses the !important tag as I personally hate it and it is too overpowering so you just need to check your site to see what is overwriting the style and make it more specific.
Brian for example you have a style .responsive #MobileMainNavigation so you need to use this instead to overwrite it.
All the best
Hi funkydory,
Yours is an even worse problem. For some reason you have a horrible !important tag added to the .nav element in your theme on line 37 of a theme css file called responsive.css
That !important tag definetely needs removing as it means nothing can override this setting on your site.
Alternatively you will have to write some custom CSS to hide it at the breakpoint.
All the best
Hi rusty_compass,
In this file:
http://www.carissamarshphotography.co.nz/blog/wp-content/themes/carissa/style.css?ver=4.5.3
On line 557, you have:
#main ul { display: inline; float: right; list-style: outside none none; margin-top: 30px; width: 100%; }This is why it is not hiding it as it is being overriden, see the display: inline part. Try putting this in the CSS of Menu to Hide option instead:
#main ul#menu-menu-1All the best
Hi Vitago,
If you want it to be the last item then simply put the $menu_item variable after the $menu variable.
Ive just tested it again and it works for me here. Can you provide a site URL for me to check?
All the best
Hi bhanur,
I just downloaded and installed that plugin and it worked perfectly fine with my plugin.
The menu images were showing and in the correct places next to each item.
Are you still having issues?
Hi Kevin,
I finally got to the bottom of it!
Turns out you had the value #transparent for the menu button background colour and that was causing the button CSS to not load and hence why it wasn’t showing correctly.
Please check and confirm all is ok your end.
All the best
Hi Vitago,
I had a play with your script and my plugin quickly and I found it seemed to work if you change the bottom 3 lines from:
echo $menu_item; $social = ob_get_clean(); return $menu . $social;to:
$social = ob_get_clean(); return $menu_item . $menu . $social;Can you just check doing it that way quickly and let me know if it works.
All the best
Hey chemdata,
Not a problem! I did change a couple things regarding the background colour of the button that may have done it for you!
Glad its working better now either way
Hey Vitago,
I expect this is due to the fact that I use a custom walker now for the menu.
I will see if I can take a look at the walker class I created and see if there is anything missing in there.
I will add it to the beta version and let you know so you can test it out.
All the best
Forum: Plugins
In reply to: [Responsive Menu - Create Mobile-Friendly Menu] blue highlight on touchHi Brandon,
It could be related to this post:
Basically it’s to do with accessibility reasons so I wouldn’t advise turning it off but if you want to the post above may help.
If this is something different please provide a site URL and I will take another look.
All the best
Great news and if you need anything in future let me know!
Hi spencer,
That second issue is something else that is fixed in the newest release.
I am sure it is a 5.3 and below error (man 5.2 is super old!) but my plugin is supposed to disable itself whenever a PHP version is below 5.4 and that’s what’s worrying me more.
What version of my plugin do you have installed currently? Can you try and update to the latest (3.0.5) if you havent already and tell me if the plugin still doesn’t deactivate itself in the admin area?
Thanks again for the help