Forum Replies Created
-
AuthorPosts
-
AdminKeymaster
Can you please tell me the shortcode you are using to create the payment button? Also share a link to the page where you have the payment button so I can inspect it.
AdminKeymasterNope, that version is not working either. I just did a test payment and got the same message. Unfortunately I cannot send a screen-shot to show you as this forum does not allow to attach files, but I can send if you email me.
AdminKeymasterI have updated the plug-in to version 1.8.8, lets hope this sorts out the issue.
AdminKeymasterI am getting this as well. We are version 1.8.1 and it was working fine until 25 May, now we are getting these error messages.
AdminKeymasterHello Alexander,
apologies for the late feedback. I’m very happy to let you know that the plugin works wonderfully, now. Thank you for fixing the problem so quickly.
Great support. Thanks.
Gio.May 19, 2018 at 4:18 am in reply to: using tags on stripe-checkout-result page as shortcode arguments #857AdminKeymasterThanks for the pointer, I got it to work now – your help is greatly appreciated!!
May 19, 2018 at 1:24 am in reply to: using tags on stripe-checkout-result page as shortcode arguments #856AdminKeymasterYou can’t use the tags that way. Instead use the filter hook of the plugin to get notified when a transaction happens and it is going to show data on the thank you page, then from your custom code handle the license related functionality. Using the hook is the proper way of doing what you are trying to do.
The plugin triggers the following filter hook that you should be able to use. It will pass the transaction data also:
asp_stripe_payments_checkout_page_result
The following documentation has an example of how to use it:
AdminKeymasterStripe payment gateway doesn’t allow you to do any normal transaction that is less than a $1.
So if you want to offer free downloads, then using a download monitoring type plugin can be helpful. The simple download monitor has the following addon that lets you offer the download in exchange of the email that gets added to your mailchimp list:
In the future, we will look at adding an option that can maybe bypass the stripe checkout if you want to sell a product for free.
AdminKeymasterDo you mean that you want to charge nothing on the day of the transaction and then charge a recurring amount after X number of days?
or Do you mean that the product is FREE altogether (no charge for it what so ever)? Is it a digital product?
If it is just a free digital download that you want to offer to your visitors, maybe you want to use the following download monitor plugin which allows you to offer digital downloads for free and also track the downloads:
May 18, 2018 at 10:47 am in reply to: How to set-up a one time payment up front plus monthly subscription? #851AdminKeymasterYes, you are right about the trial period. If you create a trial period then they will ONLY be charged AFTER the trial period is over.
If you create a subscription WITHOUT the trial, then they will be charged today (on the day or the transaction) and then after every billing interval.
May 17, 2018 at 10:04 am in reply to: How to set-up a one time payment up front plus monthly subscription? #847AdminKeymasterAs far as I know, Stripe doesn’t offer that kind of option in their subscription at the moment.
AdminKeymasterYes, we have a github repository for the plugin. You can create a pull request here:
AdminKeymasterWell, the billing_address tag has more than just the name, and it isn’t really parseable.
It’s easy enough to create a payer_name attribute that is set from stripeBillingName or if that isn’t present, stripeEmailAddress. I did that in my site. Is there a github or something else for this? I’d be happy to submit a formal patch.
May 13, 2018 at 6:34 am in reply to: Documentation error for asp_stripe_payments_checkout_page_result #832AdminKeymasterThats a mistake for sure. I have corrected it just now. Thank you for pointing it out.
AdminKeymasterStripe doesn’t collect the customer name for normal checkout. It is only collected with the address field (if you enable address collection). This name value is not present at all on transactions without address field collection. So we didn’t create a tag for it.
You can get the name with the address field if you use the address merge tag. For example: {billing_address}
Maybe we can add a merge tag for “customer name” which will only work when the address field collection is enabled. Will that work for you?
-
AuthorPosts