Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Controls whether to output the checkout contact login CTA section.
Parameters #
$output(string) Whether to output the section. Defaults toyes.
Examples #
/**
* Hide login CTA section
*/
function hide_login_cta_section( $output ) {
return 'no';
}
add_filter( 'fc_output_checkout_contact_login_cta_section', 'hide_login_cta_section', 10 );
