Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires before the coupon code section.
Examples #
/**
* Add coupon section header
*/
function add_coupon_header() {
echo '<div>Enter your coupon code below to enjoy exclusive discounts!</div>';
}
add_action( 'fc_coupon_code_section_before', 'add_coupon_header', 10 );
