Silver Muru > Blog > Wordpress

Woocommerce: how to remove product tabs?

How to remove product tabs in single product view?

PHP
8 lines
1
2
3
4
5
6
7
8
add_filter( 'woocommerce_product_tabs', 'woo_remove_tab', 98);
function woo_remove_tab( $tabs ) {
unset( $tabs['description'] );
unset( $current_tabs['reviews'] );
unset( $current_tabs['additional_information'] );
return $tabs; /* return all other tabs */
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

 

WordPress custom post type search result custom template

Code need to be added to theme function.php file

PHP
11 lines
1
2
3
4
5
6
7
8
9
10
11
function template_chooser($template)
{
global $wp_query;
$post_type = get_query_var('post_type');
if( $wp_query->is_search && $post_type == 'learn' )
{
return locate_template('archive-learn.php');
}
return $template;
}
add_filter('template_include', 'template_chooser');
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX