Created
March 19, 2019 17:14
-
-
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.
This file contains hidden or 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
<?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