Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires to output the distraction-free checkout footer on the checkout page.
Examples #
/**
* Add checkout footer content
*/
function add_checkout_footer_content() {
echo '<div class="checkout-footer">Thank you for shopping with us</div>';
}
add_action( 'fc_checkout_footer', 'add_checkout_footer_content', 10 );
