New Landing How can we help? Atelier CART TRANSLATION ON HEADER

Viewing 2 posts - 1 through 2 (of 2 total)
  • Posted in: Atelier
  • #244264
    idilturkmen
    Member
    Post count: 6

    Hi,

    How can i change the sentences/words displayed under header cart icon?

    The changes i would like to do are listed below;

    Unit Price : Birim Fiyat
    Quantity: Adet
    Total: Toplam
    View Cart: Sepeti Görüntüle
    Checkout: Alışverişi Tamamla

    Thanks,

    Attachments:
    You must be logged in to view attached files.
    #244359
    Mohammad – SUPPORT
    Moderator
    Post count: 27441

    Hi,
    Please paste this code at functions.php of child theme.

    function sf_text_strings( $translated_text, $text, $domain ) {
    	switch ( $translated_text ) {
    		case 'Checkout' :
    			$translated_text = __( 'Alışverişi Tamamla', $domain );
    			break;
                    case 'View Cart' :
    			$translated_text = __( 'Sepeti Görüntüle', $domain );
    			break;
    	}
    	return $translated_text;
    }
    add_filter( 'gettext', 'sf_text_strings', 20, 3 );

    Thanks
    Mohammad

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in and have valid license to reply to this topic.

License required for one of the following items
Login and Registration Log in · Register