Back to list of all filter and action hooks for Fluid Checkout Lite.
Description #
Allows changing the checkout page title.
The checkout page title is visually hidden by default. To display it, use the fc_display_checkout_page_title filter and set its return value to true.
Parameters #
$page_title(string) The checkout page title.
Examples #
/**
* Customize checkout page title
*/
function customize_checkout_page_title( $title ) {
return __( 'Complete Your Order', 'my-theme' );
}
add_filter( 'fc_checkout_page_title', 'customize_checkout_page_title', 10 );
/**
* Show checkout page title
*/
add_filter( 'fc_display_checkout_page_title', '__return_true', 10 );
