Posted: February 3, 2015 at 10:47 am
|
WP 4.1 EE 4.4.10 |
Hi Carrie, I can advise updating to Event Espresso 4.6 as it will allow you to edit the invoice and receipt templates from within the Event Espresso > Messages part of WordPress dashboard. |
|
|
Hi Josh |
Hi Carrie, There is an update available, but the update notifications do not all go out all at the same time. You can trigger an update notification on your website by going to your Event Espresso > General Settings page, then click save. |
|
|
I have updated but the work Ticket is still there and I see no way to get rid of it. |
|
Josh – when I upgraded the plugin to 4.6 the following code which is in the child themes functions.php file quit working: //* Change the messaging for the additional tickets/attendees on the registration checkout page return ‘We agree that the Downtown Camas Association (DCA), the City of Camas, and the event sponsors are in no way responsible or liable for amount of sales, personal property losses or damages, or injury resulting from involvement in the plant fair. The DCA has the right to approve all products and displays at this event and ask for removal of any product/display that does not fit our guidelines or quality standard. Participation in this event constitutes acknowledgement and agreement to these terms.’; I need that disclaimer to show on the registration form. How can I get it back with the new version? I thought adding to a child theme would prevent things from disappearing on upgrade. |
|
It looks like that filter is applied in the auto_copy_attendee_info.template.php file. Is that template being displayed? It might not show up if there is only one attendee in the registration. |
|
The only thing that changed was the upgrade. That is the code that was provided through another support question. I did not change any templates – just upgraded. |
|
We can’t use this program if the disclaimer cannot be added to the form. It was there before upgrading – now it is not. We will request a refund and find another program if this can’t be fixed. |
Hi Carrie, the disclaimer can be used with Event Espresso. The issue is how its being added with FHEE__registration_page_attendee_information__auto_copy_attendee_pg. It set to run if multiple tickets are selected: http://cl.ly/image/1u1v1W2O471y However, if a single ticket is selected then it won’t appear because there won’t be multiple tickets or multiple attendees/registrants if there is a single ticket option. Try adding the disclaimer as a required question with a checkbox. Then position it right under the under required question. — |
|
|
Lorenzo I have already tried that. Your form will not allow me to enter the text that they need to agree to. That is why you originally had me put it in the functions php file. How can that code be changed to work for all registration. Most of them will be single. |
Hi Carrie, You can try using the ‘FHEE__registration_page_attendee_information__attendee_information_pg’ hook instead. |
|
|
I added that and get a parse error – here is that whole section: return ‘We agree that the Downtown Camas Association (DCA), the City of Camas, and the event sponsors are in no way responsible or liable for amount of sales, personal property losses or damages, or injury resulting from involvement in the plant fair. The DCA has the right to approve all products and displays at this event and ask for removal of any product/display that does not fit our guidelines or quality standard. Participation in this event constitutes acknowledgement and agreement to these terms.’; |
Hi Carrie, You have a typo in your code:
needs to be:
|
|
|
I am still getting a parse error: |
Hi Carrie, there is a mix of styles with the apostrophes. Try this version: — |
|
|
That got rid of the parse error – thank you. Now the message is at the top of the page which does not make sense – it needs to be at the bottom of the form. |
Hi Carrie, You can make your custom message display at the bottom of the registration page by echoing out the text in a function and add it to the //* Add message to the bottom of the registration checkout page add_action('AHEE__SPCO__after_registration_steps', 'ee_custom_messaging_information' ); function ee_custom_messaging_information() { echo ' |
|
|
Thanks Josh – that works perfectly! |
The support post ‘Invoice text needs to be changed’ 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.