Skip to content

Instantly share code, notes, and snippets.

@skyshab
Created January 25, 2021 17:26
Show Gist options
  • Save skyshab/053ca22ff1a352d40062acf7d7676616 to your computer and use it in GitHub Desktop.
Save skyshab/053ca22ff1a352d40062acf7d7676616 to your computer and use it in GitHub Desktop.
limit max purchase tickets capacity
<?php
add_filter( 'tribe_tickets_get_ticket_max_purchase', function( $available_at_a_time, $ticket, $event, $ticket_id ) {
// maybe do some logic here with one of the available arguments?
return 1;
}, 10, 4 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment