• Hi,
    Ever since I created a child theme, the product prices on my website are showing twice beneath every product, which is horrible.
    I did not make any changes in the child theme at the time, still I had the two prices. I tried working around with my theme settings, the customizer, and woocommerce settings.
    It just doesn’t matter. It either shows no prices when I turn it off, or it shows two prices for the same product when I turn it on. If I switch my website to the parent theme it just shows one price. I’m clueless.

    Hope there’s someone who can help me with this. Some CSS code or instructions, all are appreciated.

    Good day!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • You should probably ask in your theme’s support forum, because it sounds like it is loading something specific to a plugin, and the child theme is doing it also.

    Hi @dinantstrike!

    If you edit the child theme are you able to search for ‘price’ and delete the second <span class="price">..></span>?

    Otherwise, you can use this CSS to hide the second price:

    .woocommerce ul.products li.product > .price {
        display: none;
    }
    Thread Starter dinantstrike

    (@dinantstrike)

    Hi @joyously , thank you for your reply.
    I actually switched my theme to TwentySeventeen to check, and the bug was still there. There indeed has to be some plugin conflict with something else.. So I’m afraid it wouldn’t help me to ask on my theme forum. Luckily, it’s mostly solved now!

    Hi @noisysocks , thanks for your reply.
    I already checked some CSS codes from other forums but they would not work, yours does, thank you! Saves my site.
    However, I’d like to have as least additional CSS as required,
    Could you tell me in which .css or .php file I can find the <span class=”price”>..></span>? I filtered every single css/php page on my child theme and I never hit any result when searching for price.

    Thanks a lot, even if I can’t find it manually I’m happy to keep using the CSS code you provided.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Product Price shows twice, help’ is closed to new replies.