Bắt buộc cài plugin ACF nhé
/* #################### Hiển thị giá trị Custom Field sau Add To Cart - Yêu cầu ACF #################### */ function hgn_display_custom_field() { global $post; // Lấy sản phẩm hiện tại $product = wc_get_product($post->ID); // Lấy giá trị Custom Field 'zz_author_text' $author_text = $product->get_meta('zz_author_text'); // Kiểm tra và hiển thị nếu có giá trị if ($author_text) { echo '<div class="custom-author-text">'; echo esc_html($author_text); echo '</div>'; } } // Thêm hook hiển thị custom field add_action('woocommerce_before_add_to_cart_form', 'hgn_display_custom_field'); /* ################### End #################### */