Announcement

Collapse
No announcement yet.

Remove Pricing

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Remove Pricing

    The boss has decided not to use the online shop anymore but we still want to display the products we have. I have switched it to catalog mode but I also want to remove the price from each product. is there an easy way to do this?

  • #2
    Yes, but you have to use CSS to target those and add to the easycart admin -> advanced settings -> custom CSS section. This for example would hide pricing on the product details page.

    .ec_details_price{
    display: none;
    }

    Comment


    • #3
      Great thanks! I'll give it a try. Would I use the following to remove from the product all together.
      .ec_product_price{
      display: none;
      }

      Comment

      Working...
      X