Product Carosel Redux -

Hi Sanjeev,

I am still not able to get the product carosel to display how we want it to look. The issue is that we have scheduled tours, where we want the price to show up, and private tours, for which there are no set prices.

So for the private tours, we need the “From €0” in the image below to disappear completely, or to be replaced with “Call for Price”.

This “Call for Price” shows up in our product listing page just fine; how do we get this to show up in the Product Carosel as well?

Thank you!
image
image

The “Call for Price” is a WooCommerce plugin, by the way.

Hello Kevin,

We do not have different methods for displaying / hiding prices based on product types built into the theme.

Based on what I see in your screenshot, its a particular tour display type with price shown on hover where you want to apply this. if so, you could target it via follwing css:

.article .hover-article .price {
display: none;
}
Not sure if this is what you need.

Ty