Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1414263

    Almusan
    Participant

    Good night,

    Im having a few problems:

    1.- How can i change the size of the images?
    2.- How can i change the title “Informacion adicional” for other different?
    3.- There are some words that still appear in english and not in my language (spanish): product, cart subtotal and order total…

    #1414265

    Almusan
    Participant
    This reply has been marked as private.
    #1414677

    Almusan
    Participant
    This reply has been marked as private.
    #1414789

    Christian
    Moderator

    Hey there,

    1. X disables WooCommerce image size setting for design consistency.
    2. For multilingual setup, you need to use a plugin such as WPML
    3. You need to translate both X and WooCommerce. You can do that by using a plugin like WPML or manually. See https://community.theme.co/kb/translation/ to manually translate X. For WooCommerce, see https://docs.woocommerce.com/document/woocommerce-localization/

    Thanks.

    #1415350

    Almusan
    Participant

    Hi man, thanks for reply but:

    1.- Can i do something with CSS ?
    2.- Not to change the language…i need change the title (if i change the languaje is the same title in other language)
    3.- Thanks.

    Regards

    #1415999

    Paul R
    Moderator

    Hi,

    1. You can add this under Custom > Edit Global CSS in the Customizer.

    
    .woocommerce-checkout .shop_table .product-thumbnail {
        max-width:100%;
    }
    

    2. Kindly refer to this link – https://community.theme.co/kb/translation/

    #1416258

    Almusan
    Participant

    1.- It doesnt work 🙁
    2.- Ok i have done it.

    #1417116

    Rad
    Moderator

    Hi there,

    Please change it to this

    .woocommerce .cart.shop_table .product-thumbnail img {
        width: 100%;
    }

    Have you managed to implement translation for the title?

    Thanks!

    #1417501

    Almusan
    Participant

    Hi thanks for you answer,

    The translation is ok.

    To change the image size still dont work with any of the two codes

    #1417623

    Joao
    Moderator

    Hi There,

    Please try:

    .woocommerce .cart.shop_table .product-thumbnail img {
        width: 100% !important;
    }

    Let us know how it goes

    Joao

    #1417770

    Almusan
    Participant

    Thanks for answer Joao,

    Uff still it dont do nothing…

    #1417917

    Jade
    Moderator

    Hi there,

    Please try this:

    .woocommerce-checkout .woocommerce-main-image img {
        width: 100%;
    }

    Hope this helps.

    #1420836

    Almusan
    Participant

    It works. Thanks !

    #1421144

    Rue Nel
    Moderator

    You’re welcome!
    Thanks for letting us know that it has worked for you.