Created
October 15, 2025 13:08
-
-
Save plugin-republic/7788344420984365e3ae27adf6248a70 to your computer and use it in GitHub Desktop.
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 | |
| /** | |
| * 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