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