Back to list of all filter and action hooks for Fluid Checkout PRO.
Description #
Fires inside the collapsible order summary toggle section.
Example #
/**
* Render a short notice next to the collapsible toggle title.
*/
function fc_custom_collapsible_toggle_content() {
echo '<span class="fc-notice">Free shipping applied automatically.</span>';
}
add_action( 'fc_pro_collapsible_order_review_toggle_content', 'fc_custom_collapsible_toggle_content' );
