Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
This action hook fires for the social login section in the contact step.
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 );
