WooCommerce: Xóa tab ‘thông tin bổ sung’ trong trang sản phẩm (ok)

https://dieuhau.com/xoa-tab-thong-tin-bo-sung/

add_filter( 'woocommerce_product_tabs', 'dieuhau_remove_product_tabs', 98 );

function dieuhau_remove_product_tabs( $tabs ) {
   unset( $tabs['additional_information'] );
   return $tabs;
}

Last updated