Support

Home Forums Event Espresso Premium How to Turn off "Please note that a maximum number of 10 tickets can be purchase

How to Turn off "Please note that a maximum number of 10 tickets can be purchase

Posted: August 25, 2015 at 12:36 pm


Aaron Peterson

August 25, 2015 at 12:36 pm

Is there a way to turn off the following line?

“Please note that a maximum number of 10 tickets can be purchased for this event per order.”

I tried to remove it using the following CSS, but it affected other areas of the site.

.lt-grey-text {
display: none;
}

Thanks!


Josh

  • Support Staff

August 25, 2015 at 1:15 pm

Hi Aaron,

You can remove that text by using a WP filter hook function. You add something like this to a custom snippets plugin:

function ap_remove_max_tickets_note() {
    return '';
}
add_filter( 'FHEE__ticket_selector_chart_template__maximum_tickets_purchased_footnote', 'ap_remove_max_tickets_note' );


Aaron Peterson

August 25, 2015 at 1:52 pm

Thanks, worked like a charm!

The support post ‘How to Turn off "Please note that a maximum number of 10 tickets can be purchase’ 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