• Resolved richestmaninlondon

    (@richestmaninlondon)


    Hi wordpress gang

    For some reason, the menu on my site does not function for mobile devices.

    the menu itself is replaced with the word “Menu” on mobile devices but it is not responsive to touch

    tried updating to 4.8 and that didn’t help. Only mailchimp, addthis and google analytics plugins installed.

    I have removed ‘powered by wordpress’ from the footer but no other changes to code.

    any ideas here?

    https://www.richestmaninlondon.com

    thanks!

Viewing 11 replies - 1 through 11 (of 11 total)
  • hmmm….you’re right, I just tried it in my iphone. Did you make any changes to your site coding? Try disabling your plugins that you added and then test it.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Sounds like you tried removing the “powered by WordPress” line and removed the whole wp_footer() function.

    Does the issue go away after reverting changes to the footer.php file?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    If you’re not aware, the wp_footer() function is a way themes and plugins load JavaScript on your website. If you remove that function then some or all of the JavaScript will not load.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    You can remove the “Powered by” line through some simple CSS. Was there a reason you went down the PHP route specifically?

    Thread Starter richestmaninlondon

    (@richestmaninlondon)

    Thanks for replies all

    tried to disable plugins but that did not help.

    I think I removed the “Powered by” line via hosted control panel, I took advice not to mess with the editor on the dashboard.

    Heres the code for my footer with “Powered by” line remove:

    </div><!– .wrap –>
    </footer><!– #colophon –>
    </div><!– .site-content-contain –>
    </div><!– #page –>
    <?php wp_footer(); ?>

    </body>
    </html>

    Thread Starter richestmaninlondon

    (@richestmaninlondon)

    how can I revert changes to footer.php file?

    thanks BTW

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Thread Starter richestmaninlondon

    (@richestmaninlondon)

    thanks that seems to have sorted it!!!!

    next I need to find out how to remove “Powered by WordPress” XD

    This should do the trick as that line “Powered by….” is in a container…

    .site-info {
        display: none;
    }

    just what I wanted. Thank you
    .site-info {
    display: none;
    }

    Thread Starter richestmaninlondon

    (@richestmaninlondon)

    thanks this seems to be sorted now

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘Menu not working/responsive on mobile devices’ is closed to new replies.