Zen Cart Logo
Forums / Addon Payment Modules / Zelle Payments [Support Thread]

Zelle Payments [Support Thread]

Views: 14,975

Results 21 to 37 of 37
20 Jan 2023, 8:09 PM
#21
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Zelle Payments [Support Thread]

split63:

Another nice feature would be to provide a small configurable discount for Zelle users, since there is not the usual transaction fees. Essentially the idea would be to show a discount on the payment page to encourage the use of Zelle over other options. I suspect this would not be an easy add.

... and another good idea, tracked via this GitHub issue: https://github.com/lat9/zelle/issues/4

27 Jan 2023, 3:03 AM
#22
split63 avatar

split63

Totally Zenned

Join Date:
May 2010
Location:
Texas
Posts:
513
Plugin Contributions:
0

Re: Zelle Payments [Support Thread]

So far, Zelle has been working out fine. However, the only problem is customers place the order, then don't send the payment.
We have to email some of them to make them aware that the order is not yet complete.

Need a custom confirmation email for Zelle, that has a different subject line, like "Order XXXXX received, Payment Pending"
Then in the body of the email, the section regarding Zelle and how to perform the payment is not pronounced....needs attention grabbing formatting.

27 Feb 2023, 9:56 PM
#23
noahvale avatar

noahvale

New Zenner

Join Date:
Feb 2023
Location:
Baton Rouge, La
Posts:
4
Plugin Contributions:
2

Re: Zelle Payments [Support Thread]

This plugin can be easily modified for Venmo payments. Just change every instance of Zelle to Venmo.

1 Mar 2023, 11:35 PM
#24
split63 avatar

split63

Totally Zenned

Join Date:
May 2010
Location:
Texas
Posts:
513
Plugin Contributions:
0

Re: Zelle Payments [Support Thread]

What would I need to change to get the Order confirmation email for Zelle, to include the word "PENDING" in the subject line?

2 Mar 2023, 11:40 AM
#25
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: Zelle Payments [Support Thread]

split63:

What would I need to change to get the Order confirmation email for Zelle, to include the word "PENDING" in the subject line?
Make a template-override copy of the payment method's language file (from /includes/languages/english/modules/payment/zelle.php to /includes/languages/english/modules/payment/YOUR_TEMPLATE/zelle.php) and make your changes in the template-override.

4 Mar 2023, 11:56 PM
#26
split63 avatar

split63

Totally Zenned

Join Date:
May 2010
Location:
Texas
Posts:
513
Plugin Contributions:
0

Re: Zelle Payments [Support Thread]

lat9:

Make a template-override copy of the payment method's language file (from /includes/languages/english/modules/payment/zelle.php to /includes/languages/english/modules/payment/YOUR_TEMPLATE/zelle.php) and make your changes in the template-override.

lat9:

Make a template-override copy of the payment method's language file (from /includes/languages/english/modules/payment/zelle.php to /includes/languages/english/modules/payment/YOUR_TEMPLATE/zelle.php) and make your changes in the template-override.

I'm more of a tweaker.....I can tweak code that is already there, but adding new for Zelle.... its not likely. I looked thru the files and could see where the body of the email was altered, but not the subject
I know that Zen has this override architecture.... but I never have used it

3 May 2023, 3:50 PM
#27
split63 avatar

split63

Totally Zenned

Join Date:
May 2010
Location:
Texas
Posts:
513
Plugin Contributions:
0

Re: Zelle Payments [Support Thread]

The problem with Zelle, is customers don't look at the email confirmation. At checkout, they have an expectation that they will be taken to some page to complete their Zelle transaction. So much so, that we get people repeating order, figuring the 1st did not go thru, since they were never asked to complete their Zelle purchase. We have also found that Many select Zelle without even knowing what it is.

A simple patch would be to alter the email confirmation subject line to include the words "pending" or "on hold", "action required", etc.
Can someone point me to an example of a subject line change in any other plugin?

3 May 2023, 9:31 PM
#28
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: Zelle Payments [Support Thread]

split63:

The problem with Zelle, is customers don't look at the email confirmation. At checkout, they have an expectation that they will be taken to some page to complete their Zelle transaction. So much so, that we get people repeating order, figuring the 1st did not go thru, since they were never asked to complete their Zelle purchase. We have also found that Many select Zelle without even knowing what it is.

A simple patch would be to alter the email confirmation subject line to include the words "pending" or "on hold", "action required", etc.
Can someone point me to an example of a subject line change in any other plugin?
What Zen Cart version?

4 May 2023, 12:00 AM
#29
split63 avatar

split63

Totally Zenned

Join Date:
May 2010
Location:
Texas
Posts:
513
Plugin Contributions:
0

Re: Zelle Payments [Support Thread]

lat9:

What Zen Cart version?

Zen Version: 1.57c

4 May 2023, 1:22 PM
#30
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: Zelle Payments [Support Thread]

Edit a template-override version of /includes/languages/english/checkout_process.php, making the changes below. That'll add the "Action required:" prefix to the order's subject if the order was paid via Zelle.

define('EMAIL_TEXT_SUBJECT', (isset($_SESSION['payment']) && $_SESSION['payment'] === 'zelle') ? 'Action required: Order Confirmation' : 'Order Confirmation');
//define('EMAIL_TEXT_SUBJECT', 'Order Confirmation');
4 May 2023, 6:05 PM
#31
split63 avatar

split63

Totally Zenned

Join Date:
May 2010
Location:
Texas
Posts:
513
Plugin Contributions:
0

Re: Zelle Payments [Support Thread]

Does the last half of that new statement

 ? 'Action required: Order Confirmation' : 'Order Confirmation'

Cover the case where it is not Zelle, such that it defaults to the original statement of just "Order Confirmation"?

4 May 2023, 7:03 PM
#32
split63 avatar

split63

Totally Zenned

Join Date:
May 2010
Location:
Texas
Posts:
513
Plugin Contributions:
0

Re: Zelle Payments [Support Thread]

lat9:

Edit a template-override version of /includes/languages/english/checkout_process.php, making the changes below. That'll add the "Action required:" prefix to the order's subject if the order was paid via Zelle.

define('EMAIL_TEXT_SUBJECT', (isset($_SESSION['payment']) && $_SESSION['payment'] === 'zelle') ? 'Action required: Order Confirmation' : 'Order Confirmation');
//define('EMAIL_TEXT_SUBJECT', 'Order Confirmation');


That seems to be working.   Thanks so much
15 Jun 2024, 6:37 PM
#33
g2ktcf avatar

g2ktcf

Totally Zenned

Join Date:
Feb 2011
Location:
Lumberton, TX
Posts:
636
Plugin Contributions:
0

Re: Zelle Payments [Support Thread]

Cindy, has any testing on this been done for ZC 2.0? Zelle is one of our normal payment methods but we have never used it for the online store.

15 Jun 2024, 7:27 PM
#34
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: Zelle Payments [Support Thread]

g2ktcf:

Cindy, has any testing on this been done for ZC 2.0? Zelle is one of our normal payment methods but we have never used it for the online store.
While I haven't tested, a quick code review say "It should". Note that it's similar to a check/moneyorder type payment; the customer takes your Zelle account information (posted once an order is complete) and has to make that transfer separately.

15 Jun 2024, 7:38 PM
#35
g2ktcf avatar

g2ktcf

Totally Zenned

Join Date:
Feb 2011
Location:
Lumberton, TX
Posts:
636
Plugin Contributions:
0

Re: Zelle Payments [Support Thread]

lat9:

While I haven't tested, a quick code review say "It should". Note that it's similar to a check/moneyorder type payment; the customer takes your Zelle account information (posted once an order is complete) and has to make that transfer separately.

Great! That works for us. Our bank has Zelle built in so it makes this an easy payment system to add. I will add it to my sandbox account and check it out.

15 Jun 2024, 8:51 PM
#36
g2ktcf avatar

g2ktcf

Totally Zenned

Join Date:
Feb 2011
Location:
Lumberton, TX
Posts:
636
Plugin Contributions:
0

Re: Zelle Payments [Support Thread]

lat9:

While I haven't tested, a quick code review say "It should". Note that it's similar to a check/moneyorder type payment; the customer takes your Zelle account information (posted once an order is complete) and has to make that transfer separately.

Yes, just tested and it works just fine. As other's have mentioned, changing the email to SHOW that an additional step is needed I think is a good thing. I will work on that next. Thank you!

25 Aug 2024, 9:47 PM
#37
lat9 avatar

lat9

Administrator

Join Date:
Sep 2009
Location:
Stuart, FL
Posts:
14,065
Plugin Contributions:
56

Re: Zelle Payments [Support Thread]

v2.0.0 of the Zelle payment module is now available for download: https://www.zen-cart.com/downloads.php?do=file&id=2301

Using the zc158+ lang.zelle.php, which requires zc158+ for operation. If you're still on zc157, continue to use v1.1.0.