Home Forums WoodMart support forum Cart hid Subtotal/Total

Cart hid Subtotal/Total

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #525263

    aleksandreeu
    Participant

    Hi,
    On our e-shop website, in tha cart we can see Subtotal and Total prices.
    Is it possible to show ONLY total price, but without including Shipping costs?
    On this example you can see, that item costs 339 CZK, but in Total we see 428 (its 339 (product) + 89 (shipping)).

    our customers are usually lost bcs of this… when they see in subtotal and total different prices.

    So we would love to show on the CART page ONLY Total Price but excluding shipping prices even if its choosen.

    P.S. we have multilangual web, using WPML. We need to apply it to all languages versions.

    #525470

    Hung Pham
    Keymaster

    Hi aleksandreeu,

    Thanks for reaching to us.

    Please add below Custom CSS code to Theme Settings > Custom CSS > Global custom CSS

    .cart_totals table tbody tr.cart-subtotal,
    .woocommerce-cart-form__contents .product-subtotal{
    	display: none;
    }

    Regards,

    #525476

    aleksandreeu
    Participant

    Sorry its not what we needed.
    We need top show only price without shipping. E.g. Only subtotal price.

    After your css it hided subtotal and shows prices with shipping prices.

    #525479

    aleksandreeu
    Participant

    Or to be concreete We need to remove this part only on SHOPPING CART page.: https://ibb.co/GcY0nrG
    Also if you can recommend how can we rename the word “subtotal” will appretiate it.

    #525567

    Hung Pham
    Keymaster

    Hi aleksandreeu,

    Please remove previous code and use below one.

    .cart_totals table tbody tr.order-total{
    	display: none;
    }

    In order to change / translate words. Please make sure you synced the strings first before translating WooCommerce, WoodMart Core plugins and WoodMart theme. You can refer to article https://xtemos.com/docs-topic/theme-translation/

    Regards,

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