Archived topic
Change the names of the menus in the view responsive
1 reply · Started by Jonathan on November 3, 2015
Hello Tom
I want to know how I can change the name of the menu when the page is in Responsive.
Look at:
https://dl.dropboxusercontent.com/u/7108205/0007.jpg
https://dl.dropboxusercontent.com/u/7108205/0008.jpg
The names are the same for the principas menu and the secundary menu, I want to change that when people visit the page in theirs movil phone.
How can I do it that?
Please help me.
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 :)
