Viewing 9 replies - 1 through 9 (of 9 total)
  • Hi Mike,

    I’m also seeing the price appear twice. I’m not sure which one you want to remove, but you can use CSS to remove both of them.

    To remove the top price:

    .astra-shop-summary-wrap .price .woocommerce-Price-amount.amount {
    display: none;
    }

    To remove the bottom price:

    .astra-shop-thumbnail-wrap .price .woocommerce-Price-amount.amount {
    display: none;
    }

    In terms of changing the colour, you’ve not specified which colour you want to change it to, so I’m using blue as an example. Feel free to switch the HEX code to whatever you wish, but this CSS should work.

    .woocommerce-Price-amount.amount {
    color: #0000FF;
    }

    Could you please clarify what you mean by “sorting” the information, and what is wrong with the product information? Unfortunately, I’m not too familiar with WooCommerce and its effect on the Astra theme, so I’ll leave that for someone else to answer.

    Just a reminder that you can always get help with WooCommerce if it’s an issue relating to that specific plugin here too: https://woocommerce.com/contact-us/

    Let me know if that CSS works for you or if you have any further questions. ??

    • This reply was modified 6 years, 3 months ago by torres126. Reason: Fix formatting
    Thread Starter mmmikeee

    (@mmmikeee)

    Hi torres126,

    amazing, your changes are that what i searched for. Thank you!
    Feel free to check the revised site.

    With sorting the information i meant that the informations are in the wrong
    sequence.
    They should be sortet in the following way:
    – title
    – delivery times
    – stock status
    – review
    – price
    – add to cart button

    Thanks a lot torres126.
    Mike

    Hi,

    Glad that worked! Regarding the sorting information, there almost certainly is a better way to do this other than CSS. But the only thing which I can offer you is CSS on how to solve the problem. The other issue is that because the different product titles go on two lines, it becomes a bit more tricky, so for the sake of simplicity, I’m slightly increasing the font size. If you want me to change that, let me know and I’ll try to think of another solution.

    However, if your intention is getting something like this, please try the following CSS: https://prnt.sc/ligbty

    .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    position: relative;
    top: -150px;
    font-size: 21px !important;
    }
    .woocommerce-de_price_taxrate {
    position: relative;
    top: 200px;
    }
    .woocommerce ul.products li.product .star-rating, .woocommerce-page ul.products li.product .star-rating {
    position: relative;
    top: -80px;
    }
    ul.products .only_s_left_in_stock_color {
    position: relative;
    bottom: 2px;
    }
    .woocommerce ul.products li.product .price, .woocommerce-page ul.products li.product .price {
    position: relative;
    bottom: 70px;
    }
    .woocommerce_de_versandkosten {
    position: relative;
    top: 190px;
    }
    .wgm-kleinunternehmerregelung {
    position: relative;
    bottom: 12px;
    }
    .shipping_de.shipping_de_string {
    position: relative;
    top: 17px;
    }

    Again, I’m not too certain if this is the best solution, so let me know if it works out for you. ??

    Thread Starter mmmikeee

    (@mmmikeee)

    Hi torres126,

    sorry for the delay.
    It works, but there should be a better way to solve the problem. It seems to be trouble with perman market und astra theme.

    Thanks a lot for your help.
    Mike

    Hello Mike,

    Are you using any plugin which adds the second price?

    Thread Starter mmmikeee

    (@mmmikeee)

    Hello Nikhil Chavan,

    no, i do not use such a plugin.

    Ok – Since the problem is now solved I will get this issue closed.

    Should you need any further help, please don’t hesitate to let me know!

    maruf93

    (@maruf93)


    I am facing this same problem, discount price is not still..
    Its show for mili-second

    Nikhil Chavan

    (@nikschavan)

    Hello @maruf93

    Can you open up a new thread with the URL of your website and any relevant information to debug your problem?

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘shop-site is showing price twice’ is closed to new replies.