I run couples retreats. I need the price to read price per couple (not price per ticket). How to change that please?
Also,the quantity column presumes that one person may be registering for (in my case) more than one couple. Won’t happen in my situation. I’d like there not to be a drop down menu in the quantity column beyond !. Please advise.
To change the text, you can use Event Espresso filter ‘FHEE__ticket_selector_chart_template__per_ticket_text’ in functions.php file of your child theme or a custom plugin file.
add_action(‘FHEE__ticket_selector_chart_template__per_ticket_text’,’fun_return_modified_text’,10,1);
function fun_return_modified_text($text)
{
$text = ‘/couple’;
return $text;
}
To handle quantity column, there is setting in dashboard ‘Maximum number of tickets allowed per order for this event’, set it to 1.
Viewing 1 reply thread
The support post ‘Change price per ticket to price per couple’ 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.
If you would like help from the Event Espresso staff, then please purchase a support license right now so you can create a support topic in our premium support forums.