Support

Home Forums Event Espresso Premium Remove Price Column…Volunteer Signup

Remove Price Column…Volunteer Signup

Posted: July 20, 2017 at 9:12 am

Viewing 8 reply threads


p4ca

July 20, 2017 at 9:12 am

Looking for a quick way to just remove the Price Column from an event with multiple “ticket” items without removing from all the other events in place for a single event.

Keep the ticket prices for this page…
http://p4ca.org/events/kentucky-dragon-boat-festival-paddling-pink/

But remove from the volunteer signup page…
http://p4ca.org/events/volunteer-signup/

Have tried the following based on some forum posts adding to the CSS for the givingpress theme…
.postid-24861 .entry-meta{display:none;}

Price column still shows. Would like to allow volunteers to just check the area they wish to volunteer for and click register.

Thanks in advance for any suggestions. New to Event Espresso and at a stumbling point.


Josh

  • Support Staff

July 20, 2017 at 10:14 am

Hi there,

Here’s the CSS that hides the price column for that one event:

#tkt-slctr-tbl-24861 .ee-ticket-selector-ticket-price-th, 	
#tkt-slctr-tbl-24861 .tckt-slctr-tbl-td-price { 	
	display:none; 	
}


p4ca

July 20, 2017 at 10:59 am

Fantastic…thanks for the quick response…

So another quickie if possible…
Under the Details section…is it possible to remove the Price and Sale Date information?

Thanks!


p4ca

July 20, 2017 at 11:04 am

And if possible from the Registration Checkout screens as well.

Thanks in advance again for any assistance!!!


Tony

  • Support Staff

July 26, 2017 at 3:41 am

Hi there,

Looking over your site it looks like you are already hiding the sections you mentioned above using CSS, so do you still need help with this?


p4ca

July 26, 2017 at 5:33 am

I think I figured it out. Would just like to know is there a way to remove that information from a single event instead of all events? It will work for the time being at this point.


Tony

  • Support Staff

July 26, 2017 at 6:07 am

You basically add the first selector from Josh’s example to any styles you want to apply to that specific event.

This #tkt-slctr-tbl-24861 is targeting that events ticket selector specifically.

So right now your hiding the price section for all events using:

.tckt-slctr-tkt-price-sctn { display:none; }

Change that to:

#tkt-slctr-tbl-24861 .tckt-slctr-tkt-price-sctn { display:none; }

You’ll need to do that for any styles your using to hide sections that you only want to hide on that specific event.

The checkout page is a little more tricky as it doesn’t use event specific classes that you can use, it uses ticket classes.

You’re currently using:

.spco-ticket-info-dv thead tr th:nth-child(3), .spco-ticket-info-dv tbody tr td:nth-child(3), .spco-ticket-info-dv thead tr th:nth-child(4), .spco-ticket-info-dv tbody tr td:nth-child(4) {
display: none;
}

To hide the pricing details on the checkout page, that would need to be repeated multiple times, once for each ticket on the event using the ticket ID, for example:

.spco-attendee-ticket-21 .spco-ticket-info-dv thead tr th:nth-child(3), 
.spco-attendee-ticket-21 .spco-ticket-info-dv tbody tr td:nth-child(3), 
.spco-attendee-ticket-21 .spco-ticket-info-dv thead tr th:nth-child(4), 
.spco-attendee-ticket-21 .spco-ticket-info-dv tbody tr td:nth-child(4) {
display: none;
}

Would hide the details on the checkout page for ticket ID 21, you then repeat for each ticket ID changing the ticket-XX for each ticket ID.


p4ca

July 26, 2017 at 6:57 am

Thank you for the info…it works great and now that I know the process it will make setting up registration for the festival each year a much easier process…and give everyone the information they need!!!


Tony

  • Support Staff

July 26, 2017 at 7:06 am

Great 🙂

Just to note I have created a feature request ticket to add an event id class to the checkout page so this may be easier in the future.

If the request goes through you could use something like:

.spco-attendee-event-xx .spco-ticket-info-dv thead tr th:nth-child(3), 
.spco-attendee-event-xx .spco-ticket-info-dv tbody tr td:nth-child(3), 
.spco-attendee-event-xx .spco-ticket-info-dv thead tr th:nth-child(4), 
.spco-attendee-event-xx .spco-ticket-info-dv tbody tr td:nth-child(4) {
display: none;
}

(Note xx would be the event ID)

Which would remove the ticket cost from the table for all tickets in that event.

Viewing 8 reply threads

The support post ‘Remove Price Column…Volunteer Signup’ 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