How to remove vertical side menu on desktop and keep on mobiles?
-
How to remove vertical side menu on desktop and keep only the horizontal one?
I have tried this snippet in my child themes’s functions.php file, but it didn’t work, the side menu still shows up:add_filter(‘tc_opt_tc_menu_style’, ‘tc_vertical_menu_in_mobiles’);
function tc_vertical_menu_in_mobiles( $type ) {
return wp_is_mobile() ? ‘aside’ : $type;
}
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How to remove vertical side menu on desktop and keep on mobiles?’ is closed to new replies.