Just in case you need to see screenshot, here it is: https://ibb.co/cYqMLwt
Basically I want to rename only “Billing to” – to “Select your Country.”
Hi @fselmani
Here is the code snippet you need to rename that string
/**
* Change the billing address substep title.
*/
function fluidcheckout_change_billing_address_substep_title( $title ) {
$title = __( 'Select your Country', 'your-text-domain' );
return $title;
}
add_filter( 'fc_substep_title_billing_address', 'fluidcheckout_change_billing_address_substep_title', 10 );
Best,
Alan.
Hi, thanks so much for your help. When I added this code, I got this error: https://ibb.co/SwbkSrN
see screenshot.
Please ignore my message. It works great, thanks again for your help.