Reply To: Change the names of the menus in the view responsive

Home Forums Support Change the names of the menus in the view responsive Reply To: Change the names of the menus in the view responsive

Home Forums Support Change the names of the menus in the view responsive Reply To: Change the names of the menus in the view responsive

#150274
Tom
Lead Developer
Lead Developer

Hi there,

If you have our Menu Plus add-on (http://www.generatepress.com/downloads/generate-menu-plus/), you can change the text in the Customizer.

Otherwise, you can use some PHP:

add_filter ( 'generate_mobile_menu_label','generate_custom_mobile_menu_label' );
function generate_custom_mobile_menu_label()
{
      return 'Whatever';
}

Let me know if you need more info 🙂