Sliding cart and taxes

Hello.

I have two questions regarding the sliding cart.

  1. How can I include a tax line below subtotal?
  2. How can I translate (to Greek) the labels: Subtotal, Shipping, Total & tax when included

In the cart page everything works fine as it uses the web site's language.

web site: https://shop.logoschema.gr/shop/

pass: cH21%BVpUznBYd8D

Thank you.

Comments

  • Hello,

    1) There is no setting to show this up. If you would like to see such a feature in the future updates, please, let us know on the following topic:

    https://forum.muffingroup.com/betheme/discussion/113/your-suggestions-for-future-updates#latest

    2) Did you handle it? Because I have checked your website, and these words are in Greek.

    Thanks

  • Hello,

    For the translation I did not handle anything. I still see it in English. My computer's default language though is in English. Could it be this? But how you see it in Greek?


  • Probably your user account you are using has the language set to English.

    If you open your website on incognito mode or switch the language to Greek, the side cart will also change.

    When a user is not logged (as I am browsing your website) or the language was not changed in the WP panel, the side cart will show the site default language.


    Thanks

  • Yes, you are right. Thank you.

    An other issue that I need help with is the ''Update Cart'' button.

    When it first opens it shows blue and then immediately turns to purple witch is the theme color setting. Why?

    On hover though it shows a strange color out of my pallete.

    How can I control this buttons background and hover colors?

    From Be Theme settings?

    If I have to control it with css please provide the relative classes.

    Thank you again.

  • The button is grayed out because there are no modifications (so the cart cannot be updated).

    If you change the quantity, for example, the button will change the color and be active.

    To change the hover color, please, go to Betheme -> Theme options -> Global -> Buttons, and modify the Highlighted one.

    Thanks

  • I understand. I have already setup the highlighted buttons.

    So the colors I see are the mix of the background colors (in highlighted setup) and the grey.

    Is there though any possibility to prevent the button to grey out when there are no modifications? Just "no function" without grey?

    Thanks.

  • Please, put the following CSS code in Betheme -> Theme options -> Custom CSS & JS -> CSS.

    .woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled]{
       opacity: 1!important;
    }
    

    Thanks

  • Thank you very much.

    Two last questions before we close this ticket (I promise...).

    I have made all images, borders, etc to have border-radius (3%-5%). But I cannot find the correct classes for the two below to change the radius too. Can you please tell me the correct ones?

    Image in the ''Promo Box'' in front page https://shop.logoschema.gr/


    The Woocommerce product image - single product page. With the classes I used I can change border-radius but the hover/magnifying effect stops working. Please give me the right one. https://bit.ly/3Gujqpf


    Thanks again.

  • The promo box does not have an option to add the border radius, and you will have to use this code:

    .promo_box img{
       border-radius: 5%!important;
    }
    

    Product images have this option enabled only with custom templates. If you do not know how to create them, please, check the following video tutorial.

    https://support.muffingroup.com/video-tutorials/how-to-create-custom-template-for-the-single-product/

    However, if you do not want to use the custom templates, you can use the following code:

    .single-product .product_image_wrapper img{
       border-radius: 5%;
    }
    

    Thanks

  • Thank you once again.

    It worked nicely. But in Woocommerce single product image when hovering/magnifying it turns to square corners again.

    Can be fixed without implementing custom templates?

    Thanks

  • Then, please, try the following code instead:

    .single-product .product_image_wrapper div{
      border-radius: 3%;
    }
    

    If you have any other questions, feel free to ask. 🙂


    Thanks

  • Excellent.

    Thank you very much.

    Always a superb support.

    You can close the ticket.


    Thanks again.

Sign In or Register to comment.