Thanks Josh. That worked! Now, how do I change the following language that shows up on the same page:
Important Notice:
The following Event(s) you have registered for do not require payment at this time and will not be billed for during this transaction. Billing will only occur after all attendees have been approved by the event organizer. You will be notified when your registration has been processed. If this is a free event, then no billing will occur.
There are two strings that have a similar message, so you probably want to change both. You could add those to the above example function, or instead add new simple functions like these:
add_filter(
'AHEE__EED_Thank_You_Page__get_ajax_content__not_approved_message',
function() {
return 'Your new message goes here';
}
);
add_filter(
'FHEE__EE_SPCO_Reg_Step_Payment_Options___events_requiring_pre_approval__events_requiring_pre_approval_msg',
function() {
return 'Your other new message goes here';
}
);
Viewing 3 reply threads
The support post ‘Changing "Not Approved" to "Pending Approval"’ 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.
Support forum for Event Espresso 3 and Event Espresso 4.