Support

Home Forums Event Espresso Premium Edit Registration Processed Page

Edit Registration Processed Page

Posted: May 3, 2018 at 10:59 am


sagar419

May 3, 2018 at 10:59 am

I’m wanting to edit the page after the user has went through registration and filled out the form. How does one go about this? I posted a pic in reference to the page I’m trying to change.

https://imgur.com/a/SI7UfwH


sagar419

May 3, 2018 at 12:32 pm

Also is it possible to have my own thank you page? Do I have to use the short-code one that the plug in has? If I can, can someone walk me through how to do that? I only say this because the language on the thank you short code doesn’t align with what we want and will cause confusion for our users. If it’s possible to edit that thank you short code to fit the language I want?


Tony

  • Support Staff

May 3, 2018 at 12:54 pm

Hi there,

I’m wanting to edit the page after the user has went through registration and filled out the form. How does one go about this?

It depends on what it is you want to change, a lot of the output is wrapped in filters or a template you can copy to your child theme and edit but we’ll need to know what changes you want to make to be able to provide more details.

Also is it possible to have my own thank you page? Do I have to use the short-code one that the plug in has?

You can edit the thank you page, but you need to use a page with the [ESPRESSO_THANK_YOU] shortcode (and have that set within EE settings).

If I can, can someone walk me through how to do that? I only say this because the language on the thank you short code doesn’t align with what we want and will cause confusion for our users. If it’s possible to edit that thank you short code to fit the language I want?

Can you let me know what it is you want to change?


sagar419

May 3, 2018 at 1:31 pm

The part where it says “Congratulations” and the text below it that starts with “check your email…”


Tony

  • Support Staff

May 4, 2018 at 5:34 am

Changing the text can be done using a filter, for example:

https://gist.github.com/joshfeck/9e50f1757bf0533c95917a69e758af4b

You set the text you want to return and place the function in a custom functions plugin on the site, we have some documentation on creating one here:

https://eventespresso.com/wiki/create-site-specific-plugin-wordpress-site/

If you let me know what you want the text to be I can put together an example using that text.


sagar419

May 5, 2018 at 11:11 am

I want it to say

“Thank you for signing up! At this time, your registration is not confirmed. You will receive an email in the following week about registration confirmation!”

If it’s possible to put that on ‘Thank You’ short code.


Josh

  • Support Staff

May 7, 2018 at 9:40 am

Here’s an example that includes that text:

add_filter( 'FHEE__thank_you_page_overview_template__order_conf_desc', 'my_custom_paragraphy' );
function my_custom_paragraphy() {
    return '<h3>Thank you for signing up!</h3><p>At this time, your registration is not confirmed. You will receive an email in the following week about registration confirmation!</p>';
}

You can add the above to a functions plugin or into your WordPress theme’s functions.php file.

The support post ‘Edit Registration Processed Page’ 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