Support

Home Forums Event Espresso Premium Formatting issue with registration confirmation page + pay at door

Formatting issue with registration confirmation page + pay at door

Posted: October 10, 2013 at 10:44 pm


John Matthews

October 10, 2013 at 10:44 pm

Hey all,

Having two issues I’d like to get taken care of if at all possible.

Event Espresso version 3.1.34.1.P
WordPress version WP 3.6
Registration page: http://www.ycac.jp/event-registration/?ee=4

Issue 1: Formatting problem when confirming price, time, etc, payment. See below image. Where exactly is this block coming from, and how do I get rid of it?

http://i.imgur.com/ifmTuzF.png

Issue 2: I’ve been fiddling around trying to find a solution to the “Pay at the Door” problem. I’ve changed the Check/Money Order settings as you can see in the below image, but the warning below still describes check and/or money order payment. Is there a way to change the text in the warning? (I’ve not found it yet.) Having a simple pay-at-the-door solution (and a smoother way for multiple people to pay multiple prices, as in adults and kids coming together when the event charges less for young’ns) seems a little obvious, surprised it isn’t easier in EE.

http://i.imgur.com/ncZrBdo.png

  • This topic was modified 10 years, 6 months ago by  John Matthews.
  • This topic was modified 10 years, 6 months ago by  John Matthews.


Tony

  • Support Staff

October 11, 2013 at 2:20 am

Hi John,

Issue 1 comes from your themes style.css file. Line 192.

.header:before {
<strong>background: url(images/header_menu.gif) repeat-x 0% 0%;</strong>
width: 100%;
height: 57px;
position: absolute;
left: 0;
bottom: 0;
content: '';
}

It is the background rule which is causing the grey box. This is used to style your navigation menu but as EE is also using a class of .header it is applied here also.

I would recommend changing the selector of that rule-set to

.motopress-wrapper.header:before

So now it becomes

.motopress-wrapper.header:before {
<strong>background: url(images/header_menu.gif) repeat-x 0% 0%;</strong>
width: 100%;
height: 57px;
position: absolute;
left: 0;
bottom: 0;
content: '';
}

Issue 2:

To alter that text you need to edit event-espresso\gateways\check\check_payment_vars.php line 60.

I would recommend copying the whole ‘check’ folder to wp-content\uploads\espresso\gateways and editing the file there, this will stop EE updates replacing your customized file.

Thank you for your feedback, both those issues are something we are working on improving as much as we can.

Regarding multiple prices you can use the Multi Event Registration Add-on to allow you to add multiple ticket prices to a ‘cart’ and then check those tickets out in one transaction.

The support post ‘Formatting issue with registration confirmation page + pay at door’ 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