The Hamburger Menu or the 3-bar Menu of the Customizr theme has the default label ‘Menu’ next to it.
To change the default label to custom text, just paste this function into your child-theme’s functions.php file.
/************************************************************************/ /* Change default menu label 'Menu' to 'Custom Word' /************************************************************************/ add_filter('tc_sidenav_menu_button_view','my_menu_label'); function my_menu_label($content){ return str_replace('Menu','Custom Word',$content); /* Change to suit your needs */ }
4 thoughts on “Change the Menu label”
Hi, does this work for mobile theme too?
Hi Lenard,
The mobile theme does not display a label. So, changing the label does not happen.
Hello, I wanted to change the floating menu button with the three bars with a simple text “MENU”
I followed the guide in a child theme, but I could not get this.
I also do not know why when I make a child theme I find myself having to set again a few things, for example I have to re-select the menu, otherwise I find the word “add menu”
Hi Luca,
The developer team handles support for Customizr at https://wordpress.org/support/theme/customizr and for Customizr-Pro at http://presscustomizr.com/support/. Please post your query there with a link to your site.