• Resolved fselmani

    (@fselmani)


    Hi, great plugin. I wonder what is the code to add to rename/edit ‘Billing to’ to different text ?

    best,
    Fidan

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter fselmani

    (@fselmani)

    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.

    Thread Starter fselmani

    (@fselmani)

    Hi, thanks so much for your help. When I added this code, I got this error: https://ibb.co/SwbkSrN

    see screenshot.

    Thread Starter fselmani

    (@fselmani)

    Please ignore my message. It works great, thanks again for your help.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Rename’ is closed to new replies.