Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Modifies the call to action text “Already have an account?” displayed in the login section.
Parameters #
$text(string) The call to action text.
Examples #
/**
* Customize login CTA text
*/
function customize_login_cta_text( $text ) {
return __( 'Returning customer?', 'my-theme' );
}
add_filter( 'fc_checkout_login_cta_text', 'customize_login_cta_text', 10 );
