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;
}

PreviousCách thêm nút Mua Ngay vào woocommerce (ok)NextChange "Place order" button text on WooCommerce Checkout page (ok)
Last updated
Was this helpful?