Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Controls whether to show account creation notice in the contact sub-step review text when choosing to create an account from checkout once the order is completed.
Parameters #
$show(string) Whether to show the notice. Defaults toyes.
Examples #
/**
* Hide account creation notice message
*/
function hide_account_creation_notice( $show ) {
return 'no';
}
add_filter( 'fc_show_account_creation_notice_checkout_contact_step_text', 'hide_account_creation_notice', 10 );
