Support

Home Forums Event Espresso Premium Event summary page

Event summary page

Posted: October 8, 2012 at 3:29 pm


Kim Schlossberg

October 8, 2012 at 3:29 pm

I have some questions/requests for the public page that displays summary information about all our events.
For one, we have sponsorships available, and on the summary page it only shows the price of the most expensive sponsorship. I’m afraid it will scare people off if they think the price of one ticket is $5000 instead of $150. Can I specify which price shows up on that page, or at least show the whole range? Or even delete the price all together? Also, I think the field about how many available spaces are left should be deleted. The pubic doesn’t need to know this.

All this refers to the page that pulls info from this code: [raw][ESPRESSO_EVENTS][/raw]

Thank you!
Kim


Chris Reynolds

  • Support Staff

October 8, 2012 at 4:31 pm

Hi Kim —

The easiest and fastest way to do this is by just hiding the price with CSS like this:

.event_price {
    display: none;
}

This will hide all instances of that class, which shouldn’t affect your registration pages, but if you needed to, you could show the prices just in the reg form if it was a problem:

#event_espresso_registration_form . event_price {
    display: block;
}


Kim Schlossberg

October 8, 2012 at 8:41 pm

Thanks, Chris – now my question would be – where do I put that code?


Jonathan Wilson

October 8, 2012 at 9:34 pm

Hi Kim,

You need to add this code to the event_espresso_style.css file. You will find this in the wp-content/plugins/event-espresso/templates directory. You will need to copy this file to the wp-content/uploads/espresso/templates directory to prevent the changes from being overwritten during an update.


Kim Schlossberg

October 9, 2012 at 2:20 pm

Wow – thanks! That seemed to work!

The support post ‘Event summary page’ 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