fc_checkout_social_login_separator_text

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 to Or.

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 );

What are your feelings

Updated on December 15, 2025