Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created October 15, 2025 13:08
Show Gist options
  • Save plugin-republic/7788344420984365e3ae27adf6248a70 to your computer and use it in GitHub Desktop.
Save plugin-republic/7788344420984365e3ae27adf6248a70 to your computer and use it in GitHub Desktop.
<?php
/**
* Set maximum number of bookable items
*/
function demo_max_bookings_per_product( $max, $product_id ) {
if( $product_id == 1234 ) {
$max = 3;
}
return $max;
}
add_filter( 'bfwc_max_bookings_per_product', 'demo_max_bookings_per_product', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment