Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Created April 13, 2023 08:26
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/df8ca7052a1a93288724b210002038f7 to your computer and use it in GitHub Desktop.
Save plugin-republic/df8ca7052a1a93288724b210002038f7 to your computer and use it in GitHub Desktop.
<?php
/**
* Apply fixed discounts in Bookings for WooCommerce
*/
function prefix_discount_type( $type, $product_id ) {
return 'fixed';
}
add_filter( 'bfwc_discount_type', 'prefix_discount_type', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment