Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires to output the terms and conditions in the place order section.
Examples #
/**
* Add terms and conditions
*/
function add_terms_conditions() {
echo '<div class="terms-conditions">By placing an order, you agree to our terms:</div>';
}
add_action( 'fc_checkout_place_order_terms', 'add_terms_conditions', 10 );
