• Resolved abuzztees

    (@abuzztees)


    On our single product page, we have upsell products that show under “Items you may also like.” We use a customization plugin, so we try not to show a price until the customizations are done. Our base pricing is used on our product page and is not accurate pricing. On our upsell products all show that price. We would like to hide those prices without having it affect the customization tool or final pricing. Is there a way to hide pricing on the upsell products? Thank you in advance for your assistance.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Gabriel – a11n

    (@gabrielfuentes)

    Hi there! ??

    This can be hided with some custom CSS. Under Customize > Additional CSS, you can add the following code:
    ?

    /* Hide Prices for upsell products */
    ?ul.product_list_widget span.woocommerce-Price-amount.amount {
        display: none !important;
    }
    

    If you’d like to learn more about CSS, I highly recommend using the free tutorials at w3schools. Here, you can find the basics of selectors (how to target the right element on the page), and properties (how to change the element on the page).

    I hope that helps ??

    Thread Starter abuzztees

    (@abuzztees)

    Thank you for the help. I was told to look at disabling an action hook and that didn’t seem to be working. Thanks for the code and the resources.

    Plugin Support Gabriel – a11n

    (@gabrielfuentes)

    I’m happy to help ??

    Great! If you have any further questions, you can start a new thread.

    Cheers!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Hiding Upsell Product Pricing’ is closed to new replies.