I already read that. But i don’t understand how to put in at my website. Could you explain more? Or send a screen shoot.
add_filter( ‘yith_wcbs_remove_best_seller’, ‘yith_wcbs_remove_best_seller’, 10, 3 );
if( ! function_exists( ‘yith_wcbs_remove_best_seller’ ) ){
function yith_wcbs_remove_best_seller( $remove, $product, $bs_product ){
if( $product instanceof WC_Product ){
$product_ids_to_remove = array( 15, 75, 321 );
if( in_array( $product->get_id(), $product_ids_to_remove ) ){
$remove = true;
}
}
return $remove;
}
}
Thx
Halim Ivan