Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Modifies the notice message text displayed in the contact sub-step review text when choosing to create an account from checkout once the order is completed.
Parameters #
$message(string) The notice message.
Examples #
/**
* Customize account creation notice message
*/
function customize_account_creation_notice( $message ) {
return __( 'Create an account to track your orders and save time on future purchases.', 'your-text-domain' );
}
add_filter( 'fc_checkout_account_creation_notice_message', 'customize_account_creation_notice', 10 );
