Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Controls whether to output the checkout contact logout CTA section for logged-in users.
This applies to the “Log out” text that appears in the My Contact section of the checkout.
Parameters #
$output(string) Whether to output the section. Defaults tono.
Examples #
/**
* Show logout CTA section for logged-in users
*/
function show_logout_cta_section( $output ) {
return 'yes';
}
add_filter( 'fc_output_checkout_contact_logout_cta_section', 'show_logout_cta_section', 10 );
