WP SITES

3086 Coded Tutorials & 289 Plugins

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. Dave Navarro Avatar
    Dave Navarro

    Not seeing that anywhere in functions.php

    1. Brad Dalton Avatar
      Brad Dalton

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

Leave a Reply

New Plugins