Код: Выделить всё
// Add custom input field to WooCommerce product page
add_action('woocommerce_before_add_to_cart_button', 'add_custom_input_field');
function add_custom_input_field() {
echo '
Enter Pincode:
';
}
// Validate the custom pincode input field
add_filter('woocommerce_add_to_cart_validation', 'validate_custom_pincode_field', 10, 3);
function validate_custom_pincode_field($passed, $product_id, $quantity) {
if (empty($_POST['custom_pincode_field'])) {
wc_add_notice(__('Please enter your pincode.'), 'error');
return false;
}
return $passed;
}
Подробнее здесь: https://stackoverflow.com/questions/790 ... oduct-page
Мобильная версия