Skip to content

Instantly share code, notes, and snippets.

@LaurenaRehbein
Created March 19, 2019 17:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save LaurenaRehbein/548b44a01f445cd32adfb35d203b06fc to your computer and use it in GitHub Desktop.
Save LaurenaRehbein/548b44a01f445cd32adfb35d203b06fc to your computer and use it in GitHub Desktop.
This filter puts resources at the top of the bookings form, with WooCommerce Bookings.
<?php
function custom_order_booking_fields ( $fields ) {
$fields = array('wc_bookings_field_resource' => $fields['wc_bookings_field_resource']) + $fields;
return $fields;
}
add_filter( 'booking_form_fields', 'custom_order_booking_fields');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment