Support

Home Forums Event Espresso Premium event card overview – delete price and sum

event card overview – delete price and sum

Posted: March 25, 2019 at 6:32 am

Viewing 6 reply threads


dafaguru1

March 25, 2019 at 6:32 am

Hi guys,

sorry, it’s me again πŸ˜‰

How can I clear the price and sum display in the event cart overview?

you can see it in this link:
https://abg-wuppertal.de/test-event-espresso/

The red frames should not be displayed…Do you have any CSS code for this?

Thanks πŸ™‚


Josh

  • Support Staff

March 26, 2019 at 9:00 am

You can remove all mentions of prices from the cart by adding the following CSS to your custom CSS editor:

#event-cart-tbl-row-hdr,
.event-cart-total-row,
.event-cart-ticket-row td:nth-of-type(2n)
{
display: none;
}


dafaguru1

March 27, 2019 at 2:26 pm

Hey Josh, thanks, it works…

but now i wanna remove price and sum from the mini-event-cart, just like this:

https://abg-wuppertal.de/test-event-espresso/

but if i hide price and sum with css there are no more details at the event-cart too, just like you can see on the picture below at my link…
but i wanna have the quantity at at the event-card

πŸ™


Josh

  • Support Staff

March 27, 2019 at 7:41 pm

It sounds like you need to be more specific with your selectors when hiding items in the widget. Can you post the CSS you’ve used for hiding items in the widget?


dafaguru1

March 28, 2019 at 5:30 am

Hey Josh,

of course! Here is my CSS code

https://pastebin.com/rxucwLAi

Thank you very much!


Josh

  • Support Staff

March 28, 2019 at 10:00 am

OK, this one is not valid CSS:

.mini-cart-tbl-qty-td total{
display: none !important;
}

and this one will hide more than what you want to hide:

.jst-rght{
display: none !important;
}

A simpler approach to hiding price related items in the minicart that will not affect the regular cart would be:

.mini-cart-tbl-total-th,
.mini-cart-tbl-price-th,
#ee-mini-cart-details .jst-rght{
visibility:hidden;
}

#ee-mini-cart-details #event-cart-total-row {
display: none;
}


dafaguru1

March 29, 2019 at 1:11 am

Hey Josh,

thank you, now it works perfectly!! Have nice weekend πŸ™‚

Greetz from germany

Viewing 6 reply threads

The support post ‘event card overview – delete price and sum’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso