Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. function add_bike_details($bike_details) {
  2.  
  3. $bike_details['label'] = "Bike Details:";
  4.  
  5. }
  6.  
  7. add_action('woocommerce_admin_booking_data_after_booking_details', 'admin_booking_data_after_booking_details_callback', 10, 1 );
  8.  
  9. function admin_booking_data_after_booking_details_callback( $booking_id ) {
  10. // Get the WC_Booking instance Object
  11. $booking = get_wc_booking( $booking_id );
  12.  
  13. // Your code come here
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement