Remove Or Change Menu Text From Genesis Mobile Responsive Menu

The new Genesis Sample child theme includes a mobile menu which adds the text Menu next to the hamburger menu like this:

menu-text

To change or remove the text, find the following code in the functions file:

$output = array(
    'mainMenu' => __( 'Menu', 'genesis-sample' ),
    'subMenu'  => __( 'Menu', 'genesis-sample' ),
);

Simply remove the text from around line 38 like this:

$output = array(
    'mainMenu' => __( '', 'genesis-sample' ),
    'subMenu'  => __( '', 'genesis-sample' ),
);

That’s it. Pretty simple but may come in handy for those that are stumped like i was!

New Genesis Versions

Upload this file to your child themes config folder replacing the default responsive-menus.php file.

Download Folder

Related Tutorials

2 responses to “Remove Or Change Menu Text From Genesis Mobile Responsive Menu”

  1. Not seeing that anywhere in functions.php

    1. In the new Genesis Sample theme it’s located around line 102.

Was This Tutorial Helpful?

Free

$0

Access only to all free tutorials per month.



Monthly

$75

Access to 10 premium tutorials per month.


Tutorial Request


Includes code guarantee and coding support.

Yearly

$500

Access to 15 premium tutorials per month.


Monthly Tutorial Request


Includes code guarantee and priority coding support.