Home Forums Basel support forum On search no sale price.

On search no sale price.

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #32151

    yvo010
    Participant

    Hi,

    I have 2 problems and I hope you know a solution for it 🙂

    1:
    When I search, I see products and 2 prices, (Normal price and sale price) but the sale price is not crossed lined. Do you know how to fix this?
    (screenshot in private content.)

    2:
    When a product is sold out, the badge did not appear on the shop page. But the sale badge works well. Do you know how I can fix the Sold out badge ?

    Thanks a lot! I hope you could response fast because my website is already running.

    #32195

    Artem Temos
    Keymaster
    Xtemos team

    Hi,

    1. We will fix it in our next theme update. As for now, you can use the following code snippet to edit it

    header.color-scheme-light .price del{
        color: #4c4c4c;
    }

    2. Please, update the theme to the latest version 3.8 where we have fixed it.

    Regards

    #32394

    yvo010
    Participant

    thanks for the reply!
    It worked.

    I have one more thing.
    I am using a plugin to hide the quantity box from product pages. But in some products in quick shop the quantity box is still visible.

    Could you maybe help me with a Css snipet to hide it from products?

    Thanks!

    #32403

    yvo010
    Participant

    Could you also help me with another thing.

    I want to align the sold out label on the right side, and the sale badge on the left.
    Is this possible with css ?

    Realy thanks!!

    #32432

    yvo010
    Participant

    Or that the sale badge dissapear when a product is sold out.. i dont like the 2 badget above each other if you know what i mean

    #32465

    Serg Sokhatskyi
    Keymaster
    Xtemos team

    Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.

    .product-quick-view .quantity {
    	display: none;
    }
    
    .product-grid-item.outofstock .onsale {
    	display: none;
    }

    Regards

    #32649

    yvo010
    Participant

    Thanks for helping me out!
    it worked.

    But on the related products on a product page the quantity box still appears.
    Do you know how I can fix it?
    See screenshot in private content.

    Thanks!!

    #32663

    Artem Temos
    Keymaster
    Xtemos team

    Try to use this code instead

    .product-quick-view .quantity {
        display: none!important;
    }
    #32716

    yvo010
    Participant

    Thanks it worked!
    now the cart page looks strange.. can you take a look maybe?
    thanks for the help!

    #32754

    Artem Temos
    Keymaster
    Xtemos team

    Could you please provide some screenshot of the cart page? Is it happen after you have added the code?

    #32758

    yvo010
    Participant

    Hi,

    Yes it happend after the css.
    It Looks like it is Because the quantity row is empty.

    I hope we Could fix it, on mobile it also shows the text: “quantity” in the cart page.

    Thanks 👍🏼 Realy happy with your great support.

    See private content for screenshot

    #32770

    Artem Temos
    Keymaster
    Xtemos team

    Try to fix it with the following code snippet

    td.product-quantity {
    	display:none;
    }

    Regards

    #32933

    yvo010
    Participant

    Thanks! That solve the issue.

    One last small thing.
    can you also write a CSS snipet to remove the ‘update cart’ button on the cart page?

    Thanks!!

    #32945

    Artem Temos
    Keymaster
    Xtemos team

    Sure,

    [name="update_cart"] {
    	display: none!important;
    }
Viewing 14 posts - 1 through 14 (of 14 total)