Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save plugin-republic/ab4034c5e0ab1836f59f93d92c0f034a to your computer and use it in GitHub Desktop.
Save plugin-republic/ab4034c5e0ab1836f59f93d92c0f034a to your computer and use it in GitHub Desktop.
<?php
/**
* Display remaining quantity on Bookings page
*/
function prefix_display_remaining_quantity() {
$remaining = bfwc_get_max_bookings( get_the_ID() );
printf(
'Places remaining: %s',
$remaining
);
}
add_action( 'woocommerce_before_add_to_cart_form', 'prefix_display_remaining_quantity', 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment