Please download again the plugin, I changed a few files that were causing that issue.
Takanakui
Thread Starter
JT
(@jackietaferner)
Thanks for your help! I don’t see any update in my plugins page, are the changes pushed?
Thread Starter
JT
(@jackietaferner)
Hmmm… I’m seeing version 1 in the Plugins section, and no upgrade:
Mobile Menu
Deactivate
Transform your website with a user friendly, dedicated and responsive mobile menu.
Version 1.0 | By Takanakui | Visit plugin site
Thread Starter
JT
(@jackietaferner)
I went and downloaded the new fileset from ww.wp.xz.cn and manually uploaded the files to my site to upgrade. The menu still doesn’t open as expected. I’m using WP 3.8.1 and Twenty Eleven theme. Any ideas?
Try to clear the cache and let me know how it goes.
Thread Starter
JT
(@jackietaferner)
My cache is completely cleared and I’m using the default theme, latest WordPress, and latest plugin version. Is it working on your end?
Hi there the problem seems to be the connection to the javascript file if you look in the error console you can see the file is missing.
Console reads 404
wp-content/plugins/mobmenu/js/mobmenu.js?ver=3.8.1
Whereas
/wp-content/plugins/mobile-menu/js/mobmenu.js?ver=3.8.1
Will connect the file and the menu works..
The plugin is in the folder mobile-menu and not mobmenu?
Worked for me..
Inside the plugin is this function which I changed to mobile-menu instead of mob-menu this fixed 404
function mobmenu_enqueue_scripts(){
// wp_enqueue_style(‘cssmobmenu’,plugins_url() . ‘/mobmenu/css/mobmenu.css’);
wp_register_script(‘mobmenujs’,plugins_url() . ‘/mobile-menu/js/mobmenu.js’, array( ‘jquery’ ) );
}