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


Comments

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.

Leave a Reply

Join 5000+ Followers

Get The Latest Free & Premium Tutorials Delivered The Second They’re Published.