-
-
Save codingmusician/85433fe0266320473460b3270cf70d48 to your computer and use it in GitHub Desktop.
This file contains 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 tec_max_tickets_allowed() { | |
if ( ! function_exists( 'tribe_is_event' ) || ! tribe_is_event() ) { | |
return false; | |
} | |
?> | |
<script> | |
jQuery( function( $ ){ | |
if( $(".tribe-ticket-quantity").length ){ | |
$(".tribe-ticket-quantity").attr("max", 1); | |
} | |
} ); | |
</script> | |
<?php | |
} | |
add_action("wp_footer", "tec_max_tickets_allowed"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment