Archived topic
I can see an X after the footer
18 replies · Started by Espresso on January 9, 2019
Hi, I have sent them.
I will wait for your findings.
Thanks,
Dan
Hi, I have sent them. I have checked but I don't really have any Twitter widget...just a link to the Twitter page.
I will wait for your findings.
Thanks,
Dan
I had a similar problem and I could fix it with adding this to the functions.php:
add_filter( 'option_generate_menu_plus_settings','lh_custom_homepage_menu_plus_settings' );
function lh_custom_homepage_menu_plus_settings( $options ) {
if ( is_page() || is_front_page() ) {
$options['slideout_menu'] = 'false';
}
return $options;
}
This post is 2 years old so hopefully the plugin author was able to resolve this already.