Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Fires to output the cart link in the distraction-free checkout header.
Examples #
/**
* Add custom cart link
*/
function add_custom_cart_link() {
echo '<a href="' . wc_get_cart_url() . '" class="custom-cart-link">View Cart</a>';
}
add_action( 'fc_checkout_header_cart_link', 'add_custom_cart_link', 10 );
