Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Modifies the separator text between login and guest checkout.
Parameters #
$text(string) The social login separator text. Defaults toOr.
Examples #
/**
* Customize social login separator text
*/
function customize_social_login_separator_text( $text ) {
// This will be used regardless of guest checkout setting
return __( 'Or continue with Social Login', 'your-text-domain' );
}
add_filter( 'fc_checkout_login_separator_text', 'customize_social_login_separator_text', 10 );
