Back to list of all filter and action hooks for Fluid Checkout PRO.
Description #
This action hook fires before the output of the cart coupon codes section.
Example #
/**
* Output extra content before coupon code section on cart page.
*/
function output_extra_content_before_coupons() {
echo '<p>';
echo esc_html__( 'This will be displayed before the coupon code section on the cart page.', 'text-domain' );
echo '</p>';
}
add_action( 'fc_pro_before_coupon_code_form_elements_cart', 'output_extra_content_before_coupons', 15 );
