Support

Home Forums Event Espresso Premium Hide REG Status on Thank You page

Hide REG Status on Thank You page

Posted: August 30, 2017 at 12:23 pm

Viewing 8 reply threads


dionne.c

August 30, 2017 at 12:23 pm

I’m using EE4. On the “Thank You” page there is a section for “Registration Details”. I would like to hide the column for “REG Status” so the user will not see a status for example Approved.

Reason being is because our user’s will only get to the Thank You page once they have actually made a payment. So once the payment has been made there is no need to tell them their registration is approved.


Tony

  • Support Staff

August 30, 2017 at 1:16 pm

Hi there,

The simplest method for this is to use some CSS:

.ee-registration-details-dv .ee-registrations-list th:nth-child(3), 
.ee-registration-details-dv .ee-registrations-list td:nth-child(3) {
    display: none;
}

To add that to your site you can follow the steps here:

https://codex.wordpress.org/CSS#Custom_CSS_in_WordPress


dionne.c

August 31, 2017 at 9:56 am

Thank you Tony, that works. A minor alignment question: Once I did that the titled “Registrant Name” is centered but the actual name displaying is left aligned. How can I left align the title “Registrant Name”?


Tony

  • Support Staff

August 31, 2017 at 12:34 pm

Can you link me to a thank you page for a test registration so I can view that please?

It’s likely from some CSS within your theme that will need to be overridden.


dionne.c

August 31, 2017 at 2:42 pm

our site is in maintenance mode so I would need to send you credentials to view it. How can I send you the credentials?


dionne.c

August 31, 2017 at 2:46 pm

I can see with Inspecting with Chrome that the title “REG Code” has a class=”jst-left” but the title “Registrant Name” does not.


dionne.c

August 31, 2017 at 2:48 pm

<th width=”40%”>
Registrant Name </th>
<th width=”25%” class=”jst-left”>
REG Code </th>
<th width=”35%” class=”jst-left”>
REG Status </th>


Tony

  • Support Staff

August 31, 2017 at 3:08 pm

Yeah its using your themes styles for th elements (the table titles)

You can force it to left align using:

.ee-registration-details-dv th {
    text-align: left;
}

That should force the header to left align for you.


dionne.c

September 1, 2017 at 7:30 am

perfect thank you!

Viewing 8 reply threads

The support post ‘Hide REG Status on Thank You 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