Remove tab reviews
1
2
3
4
5
6
7
|
add_filter( 'woocommerce_product_tabs', 'custom_reorder_tabs', 98 );
function custom_reorder_tabs( $tabs ) {
$tabs['description']['priority'] = 10;
$tabs['huong_dan_thanh_toan']['priority'] = 11;
$tabs['chinh_sach_dieu_khoan']['priority'] = 12;
return $tabs;
}
|
0 nhận xét: