• larosadelborghetto

    (@larosadelborghetto)


    Hello guys!

    We have 2 problems with the checkout page:

    1) The shipping address is automatically checked (we couldn’t find a way to remove the check mark)

    2) We are unable to translate some part of the texts on the checkout page into Italian, such as the “place order” button, or information about the credit-debit card…

    Can you help us to solve these problems? Thank you in advance..

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Armando

    (@geckod22)

    Hi,

    about 1. This depends on a WooCommerce option called **Shipping destination** set on **Default to customer shipping address**, that you can find in Woocommerce > Settings > Shipping > Shipping Options.

    about 2 these parts are not managed by the theme. For the Place Order button you could try to change it adding this code to your active child theme functions.php file

    if ( ! function_exists( 'woocommerce_order_button_text_custom' ) ) {
    	add_filter( 'woocommerce_order_button_text', 'woocommerce_order_button_text_custom');
    	function woocommerce_order_button_text_custom() {
    		return "Mio testo qui";
    	}
    }

    about the credit card that depends on the payment plugin you are using.

Viewing 1 replies (of 1 total)
  • The topic ‘Translate Checkout page’ is closed to new replies.