sasquatchms
Forum Replies Created
-
Will you be adding this to the next update or will I need to re-add this code each time? Thanks!
Yes this seems like conflicting information.
Support article says: “When creating charges, send customers’ names and e-mail addresses…If you don’t use Stripe.js or Customer objects, you can include e-mails in the description field on charges.” via https://support.stripe.com/questions/avoiding-fraud-and-disputes
Documentation says “If you have Stripe email receipts enabled, the description on a charge or invoice item will appear on the email receipt that is sent to your customer.” via https://stripe.com/docs/api#metadata
For what it’s worth, I do not have customer email receipts in use (WooCommerce already does that) and I do not mind if the email address is in the Description. That is jut my own use-case and not sure what best-practice is. Maybe someone on Stripe IRC can give a definitive answer.Confirmed, I can see that info after going into the POST /v1/charges.
Will you look into adding cutomer email where required to pass to Stripe for anti-fraud scan?
Thanks…chargebacks are no fun, your efforts benefit all of us!
Oh, cool thanks!
I think if creating a customer record is a pain in the butt, adding cutomer email to the description looks to be the next best thing, according to the documentation I linked. Not sure about placing it in the metadata.
I noticed you were working on subscriptions, which likely requires a customer record anyway, so maybe “kill two bird with one stone” there.
Hm, I am not sure. I am just going off what Stripe says in their documentation.
Also, can you pass the shipping address as well as the billing address? This is another piece of info they will use (if passed) for anti-fraud purposes.
https://support.stripe.com/questions/avoiding-fraud-and-disputes
“Generally, Stripe cannot see the shipping address customers provide and shipping information is not necessary to successfully accept a payment. However, you can improve Stripe’s fraud detection by sending the shipping address when creating a charge.”
https://stripe.com/docs/api#metadata
Shipping information
Store shipping status and tracking numbers on a charge to easily track the status of an order.Forum: Plugins
In reply to: [Stripe Payment Gateway WooCommerce Addon] How safe is it?Also, at the end of the article you say “Later versions of this Stripe plugin promise to allow refunds from inside WooCommerce.”
The current version supports refunds from inside WooCommerce. I have tested it.
Forum: Plugins
In reply to: [Stripe Payment Gateway WooCommerce Addon] How safe is it?PCI Compliance requires encryption. The plugin may allow it, but your readers should know they will not be in compliance if they don’t use HTTPS. They can be fined or have their accounts revoked. Besides, their customers will be turned-off by lack of HTTPS. Cheers!
I finally got around to updating the the latest WC version, and looks like they still haven’t added the appropriate hook.
Just wanted to let you know. Thanks!
Worked like a charm!
Thanks for all the custom modifications! You’re one of the good ones. ?? Cheers! Keep up the great work.
Donation sent!
I have another request. I’d like to replace the default credit card icon image with my own. With my other payment gateway plugins I use a snippet of code placed in the functions.php file of my child theme. Can you provide this snippet to properly override the default image?
For example, with PayPal:
/**
* Custom icon for PayPal payment option on WooCommerce checkout page.
*/function isa_extended_paypal_icon() {
// picture of accepted credit card icons for PayPal payments
return ‘/URL-TO-CUSTOM-LOGO/credit_card_icons.png’;
}
add_filter( ‘woocommerce_paypal_icon’, ‘isa_extended_paypal_icon’ );Just tested and works great! I like the metadata additions as well, nice work. Just curious did you implement the updater yet? Or should I check back here for updates for now?
Still on MWB block list…
Wonderful. Thanks. I won’t get to it until tonight, but will test and report back.
Can I uninstall and then reinstall from the admin panel, or do I have to install via zip?
Nice! The info in the screenshot looks good! I’ll be updating and testing once the update comes through…not seeing it in my admin panel yet.