Thanks I’ve added in this code
add_filter( 'option_generate_menu_plus_settings','lh_custom_homepage_menu_plus_settings' );
function lh_custom_homepage_menu_plus_settings( $options ) {
if ( is_front_page() ) {
$options['mobile_menu_label'] = 'Home Page Toggle Text';
$options['slideout_menu'] = 'both';
$options['slideout_menu_side'] = 'left';
}
return $options;
}
But it still looks the same on the home page. Do I need to hide the other menu? It mentions something along those lines in the post you referred to