Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Modifies the login button label text for the call to action link.
Parameters #
$label(string) The button label.
Examples #
/**
* Customize login button label
*/
function customize_login_button_label( $label ) {
return __( 'Sign In', 'your-text-domain' );
}
add_filter( 'fc_checkout_login_button_label', 'customize_login_button_label', 10 );
