How to remove left sidebar entirely from site
-
Hi
I don’t need a left sidebar at all for this client website.
I have tried different coding in functions.php but nothing seems to remove it.
I found this in google but didn’t work:
function iconic_remove_sidebar( $is_active_sidebar, $index ) {
if( $index !== “sidebar-1” ) {
return $is_active_sidebar;
}if( ! is_product() ) {
return $is_active_sidebar;
}return false;
}add_filter( ‘is_active_sidebar’, ‘iconic_remove_sidebar’, 10, 2 );
Can someone offer some coding for help please ?
Thanks
Kristin
Viewing 15 replies - 1 through 15 (of 15 total)
Viewing 15 replies - 1 through 15 (of 15 total)
- The topic ‘How to remove left sidebar entirely from site’ is closed to new replies.