fc_checkout_social_login

Table Of Contents

Back to list of all filter and action hooks for Fluid Checkout Lite.

Description #

Fires inside the login section to output the social login when available section.

Examples #

/**
 * Adds div to Social Login section
 */
function add_social_login_content() {
    echo '<div class="social-login" style="text-align: center;">Social login</div>';
}
add_action( 'fc_checkout_social_login', 'add_social_login_content', 10 );

What are your feelings

Updated on February 27, 2026