Last active
November 18, 2019 15:27
-
-
Save clintN/5f07cf6347ce9f98f0b1aa61bcdbf496 to your computer and use it in GitHub Desktop.
Adds a datepicker widget to WooCommerce checkout
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Register main datepicker jQuery plugin script | |
add_action( 'wp_enqueue_scripts', 'enabling_date_picker' ); | |
function enabling_date_picker() { | |
// Only on front-end and checkout page | |
if( is_admin() || ! is_checkout() ) return; | |
// Load the datepicker jQuery-ui plugin script | |
wp_enqueue_script( 'jquery-ui-datepicker' ); | |
} | |
// Call datepicker functionality in your custom text field | |
add_action('woocommerce_after_order_notes', 'my_custom_checkout_field', 10, 1); | |
function my_custom_checkout_field( $checkout ) { | |
date_default_timezone_set('America/Los_Angeles'); | |
$mydateoptions = array('' => __('Select PickupDate', 'woocommerce' )); | |
echo '<div id="my_custom_checkout_field"> | |
<h3>'.__('Empty Cylinder Collection').'</h3>'; | |
// YOUR SCRIPT HERE BELOW | |
echo ' | |
<script> | |
jQuery(function($){ | |
$("#datepicker").datepicker(); | |
}); | |
</script>'; | |
woocommerce_form_field( 'cylinder_collect_date', array( | |
'type' => 'text', | |
'class' => array('my-field-class form-row-wide'), | |
'id' => 'datepicker', | |
'required' => false, | |
'label' => __('Collection Date'), | |
'placeholder' => __('Select Date'), | |
'options' => $mydateoptions | |
), | |
$checkout->get_value( 'cylinder_collect_date' )); | |
echo '</div>'; | |
} | |
/** | |
* Process the checkout | |
**/ | |
add_action('woocommerce_checkout_process', 'my_custom_checkout_field_process'); | |
function my_custom_checkout_field_process() { | |
global $woocommerce; | |
// Check if set, if its not set add an error. | |
if (!$_POST['cylinder_collect_date']) | |
wc_add_notice( '<strong>Collection Date</strong> ' . __( 'is a required field.', 'woocommerce' ), 'error' ); | |
} | |
/** | |
* Update the order meta with custom fields values | |
* */ | |
add_action('woocommerce_checkout_update_order_meta', 'my_custom_checkout_field_update_order_meta'); | |
function my_custom_checkout_field_update_order_meta($order_id) { | |
if (!empty($_POST['cylinder_collect_date'])) { | |
update_post_meta($order_id, 'Pick-up Empty Cylinder', sanitize_text_field($_POST['cylinder_collect_date'])); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment