Cách gỡ bỏ wishlist trong single product (oK)

function filter_yith_wcwl_positions( $array ) { 
    $array['add-to-cart'] = '';
    return $array; 
}; 
add_filter( 'yith_wcwl_positions', 'filter_yith_wcwl_positions', 10, 1 ); 

Last updated