Remove Search Results Sidebar
This is a Developer Level doc.
If you're unfamiliar with PHP and/or editing files, codes and templates, as well as with resolving possible conflict, please seek help from a professional. Under our Support Policy, we don't provide support for modifications and customization.
/**
* Remove search results sidebar
* @return full-width, full-screen
*/
function remove_search_sidebar( $layout ) {
if ( is_search() ) {
$layout = 'full-width';
}
return $layout;
}
add_filter( 'ocean_post_layout_class', 'remove_search_sidebar', 20 );
Adjust the $layout value per your need.
All PHP snippets should be added via a child theme's functions.php file.