registrants dont complete payment

More
8 years 3 weeks ago #80335 by Ines
registrants dont complete payment was created by Ines
Hi! I'm using EB with the basic os_paypal plugin and am finding that the registrants leave after filling out the form. I think they are not clear that they need to wait for Paypal to come up in order to pay. Any way to make this more evident?

Please Log in or Create an account to join the conversation.

More
8 years 3 weeks ago #80356 by Tuan Pham Ngoc
Replied by Tuan Pham Ngoc on topic registrants dont complete payment
How do you know that they leave after filling out the form ? There is a chance that when they are redirected to PayPal, they don't want to become registrant anymore and stop the payment process

Could you please try to contact one of them and ask them to see exactly the reason ?

Right now, when they fill-in the form, there is a message like this displayed:

Please wait while redireing to payment gateway for porcessing payment..... Maybe you can go to Events Booking -> Translation, find the text and change it to make it more clear to your users if needed?

Tuan

Please Log in or Create an account to join the conversation.

More
8 years 3 weeks ago - 8 years 2 weeks ago #80394 by James Riley
Replied by James Riley on topic registrants dont complete payment
Here's my personal "improved" EB_WAIT_PAYPAL. Go into the Event Booking -> Translation Manager and replace the contents of EB_WAIT_PAYPAL with the following block of code. Feel free to modify it (you'll have to download the images -- PayPal_ProgressCircle.gif and PayPal-acceptance-mark.png -- that I've attached, and adjust the <img src=> paths to where you uploaded the images to on your site).
Code:
<div id="EB_WAIT"><p><img src="/path-to-image/PayPal_ProgressCircle.gif" alt="Loading... Please wait." /><br /><em>Please wait while redirecting to Paypal for payment processing.</em></p><hr /><p><strong class="EB_WAIT_noPP">No PayPal account? No problem!</strong> Just look for the <strong>DON'T HAVE A PAYPAL ACCOUNT</strong> link!</p><p><em>If you experience any difficulty with paying via PayPal,<br /><strong>please call 555-555-5555</strong>during office hours<br />and we will be happy to help you process your payment by phone,<br />or provide you with alternate payment options.</em></p><p><img src="/path-to-image/PayPal-acceptance-mark.png" alt="PayPal" /></p></div>

And the CSS code (inline CSS in the Translation Manager kept crashing :( ).
Add the following to /media/com_eventbooking/assets/css/custom.css. If it doesn't work there (EB's custom.css might not load in for the wait screen), then you will have to insert it into your main template css instead.
Code:
#EB_WAIT{font-weight:normal; font-size:85%; margin-top:60px; margin-bottom:800px; text-align:center;} #EB_WAIT p {margin-bottom:20px;} #EB_WAIT .EB_WAIT_noPP {font-size:1.2em; display:block; text-decoration:underline; margin-bottom:5px;

Sample (note: dots around the PP are normally animated, but don't animate in my screenshot sample): [hr]

James Riley .: EventBooking user since 2014 ::: JoomDonation user since 2016 :.
.: grfx & web design / IT / AV @ St. Therese Institute of Faith and Mission, Bruno, SK, Canada :.
Attachments:
Last edit: 8 years 2 weeks ago by James Riley.
The following user(s) said Thank You: Brian F

Please Log in or Create an account to join the conversation.

More
8 years 3 weeks ago - 8 years 3 weeks ago #80395 by James Riley
Replied by James Riley on topic registrants dont complete payment
@Taun: while on the subject of payment method "wait" screens, would it be possible to implement a "click here if you are not automatically redirected" link within the PayPal (and/or other payment) "wait" screens?

James Riley .: EventBooking user since 2014 ::: JoomDonation user since 2016 :.
.: grfx & web design / IT / AV @ St. Therese Institute of Faith and Mission, Bruno, SK, Canada :.
Last edit: 8 years 3 weeks ago by James Riley.

Please Log in or Create an account to join the conversation.

More
8 years 3 weeks ago #80410 by Andrew
Replied by Andrew on topic registrants dont complete payment
Thanks James, I would love to implement your "wait" page. What is the path to the file that I need to replace/modify?

Please Log in or Create an account to join the conversation.

More
8 years 3 weeks ago #80429 by James Riley
Replied by James Riley on topic registrants dont complete payment
Just download the 2 attached images on my post, and upload them to the folder of your choice on your server (using whatever means you want -- ftp, Joomla, etc.). Once uploaded, replace the 2 "path-to-image" occurrences in my code with the path to the image on your server.

James Riley .: EventBooking user since 2014 ::: JoomDonation user since 2016 :.
.: grfx & web design / IT / AV @ St. Therese Institute of Faith and Mission, Bruno, SK, Canada :.

Please Log in or Create an account to join the conversation.

More
8 years 3 weeks ago #80433 by Andrew
Replied by Andrew on topic registrants dont complete payment
Thanks, Yes, I understand how to link the code to the images, but where am I inserting the code? THis bit of code:
Code:
<div id="EB_WAIT"><p><img src="/path-to-image/PayPal_ProgressCircle.gif" alt="Loading... Please wait." /><br /><em>Please wait while redirecting to Paypal for payment processing.</em></p><hr /><p><strong class="EB_WAIT_noPP">No PayPal account? No problem!</strong> Just look for the <strong>DON'T HAVE A PAYPAL ACCOUNT</strong> link!</p><p><em>If you experience any difficulty with paying via PayPal,<br /><strong>please call 555-555-5555</strong>during office hours<br />and we will be happy to help you process your payment by phone,<br />or provide you with alternate payment options.</em></p><p><img src="/path-to-image/PayPal-acceptance-mark.png" alt="PayPal" /></p></div>

I am guessing this goes into one of the files in components/com_eshop/plugins/payment/xxxx.php
where xxx.php is the file that needs the code.

Thanks!

Please Log in or Create an account to join the conversation.

More
8 years 2 weeks ago - 8 years 2 weeks ago #80455 by James Riley
Replied by James Riley on topic registrants dont complete payment
Go into Event Booking -> Translation Manager, and replace the contents of EB_WAIT_PAYPAL



Oh, and I just realized that I didn't post my CSS code (inline CSS in the translation manager kept crashing :( -- and I've modified my original post to include this now). Add the following to /media/com_eventbooking/assets/css/custom.css. If it doesn't work there (EB's custom.css might not load in for the wait screen), then you will have to insert it into your main template css.
Code:
#EB_WAIT{font-weight:normal; font-size:85%; margin-top:60px; margin-bottom:800px; text-align:center;} #EB_WAIT p {margin-bottom:20px;} #EB_WAIT .EB_WAIT_noPP {font-size:1.2em; display:block; text-decoration:underline; margin-bottom:5px;

James Riley .: EventBooking user since 2014 ::: JoomDonation user since 2016 :.
.: grfx & web design / IT / AV @ St. Therese Institute of Faith and Mission, Bruno, SK, Canada :.
Attachments:
Last edit: 8 years 2 weeks ago by James Riley.

Please Log in or Create an account to join the conversation.

More
8 years 2 weeks ago #80477 by Andrew
Replied by Andrew on topic registrants dont complete payment
Mahalo!

Please Log in or Create an account to join the conversation.

Moderators: Tuan Pham Ngoc