Created
March 12, 2024 09:15
-
-
Save plugin-republic/ab4034c5e0ab1836f59f93d92c0f034a 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 | |
/** | |
* 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