Ryan Ray
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Compatibility with Woocommerce 3.5.8Hi @kroups,
Of course, happy to help find the answer and explain where it normally is found. Have a great day!
Hi @iaingraydon,
Thank you for the explanation, if this customer on your site had two different cards saved to their account this is all stored and handled via Stripe itself.
If you log into your Stripe.com account and head to Customers you should find the customer that was used to save the two cards in. Then in their account you’ll see the correct and incorrect card saved under Cards. There is a clear Remove link there to make sure that customer isn’t able to use that card in any future purchases with your store.
Link to image: https://cld.wthms.co/J5vxLjHopefully that helps, thanks!
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Credit Card Field – no input possibleHi @stellarmaps,
Sorry to see you’ve run into Stripe issues here, I do see a couple of what seems to be related JavaScript issues on the checkout page.
Could you next enable logging under WooCommerce > Settings > Payments and select Manage next to Stripe. Then at the bottom of those settings you’ll see a checkbox to enable Logging.
Link to image: https://cld.wthms.co/20lTOrThen if any errors are logged you’ll find those under WooCommerce > Status > Logs tab. There will be a Stripe log for every day that logging is enabled.
Link to image: https://cld.wthms.co/qK6BmLIf you see any thing in those log files let us know, it may be helpful in figuring out what’s going on with Stripe.
Could you also send us a copy of your site’s System Status? You can find it via WooCommerce > Status. Select “Get system report” and then “Copy for support”. Once you’ve done that, you can paste it here.
Thanks!
Forum: Themes and Templates
In reply to: [Storefront] Remove Add to Cart Button from storerontHi @iamrahul95,
So would a filter like the one below work?
add_filter( 'woocommerce_is_purchasable', '__return_false');This disables any purchasing, but then you would still see buttons that say “Read more.”
Link to image: https://cld.wthms.co/BEqkpVForum: Themes and Templates
In reply to: [Storefront] Alterar um link href do tema. Ajudem-me.Hi @luanphilipe,
I think what you are saying here is that you have two pages. Your homepage that’s using blocks to layout the page as you’d like, then the shop page which is a grid of all your products.
You’re then noting that when on the cart page, perhaps when the cart is empty, there is a button that says “Return to store” which you’d like to change the link to.
Link to image: https://cld.wthms.co/XtVlYLIf that’s correct this takes a little bit of PHP, which this site has a great tutorial on. –> https://businessbloomer.com/woocommerce-change-return-shop-url/
I would recommend then using the snippet from the tutorial in a plugin like one called Code Snippets. This will keep your code snippet safe from any theme or plugin updates.
Forum: Themes and Templates
In reply to: [Storefront] solvedHi @yoebo,
Thanks for the heads up, hopefully you found the right forum. 🙂
Kudos @jarretc, thanks for the CSS help here. 🙂
Forum: Themes and Templates
In reply to: [Storefront] Remove Add to Cart Button from storerontHi @iamrahul95,
Like Jarret said would you happen to be using product blocks in your homepage? There may be a different way to then remove the add to cart button from blocks on the homepage.
At the moment the actions you’re removing don’t apply to blocks. 🙂
Hi there @spinlead,
When the plugin is active it creates a margin issue with the woocommerce add to cart button.
To confirm is this happening with Storefront activated or your original theme? I assume it is with your original theme as I see parts of the Payment Request button here.
Link to image: https://cld.wthms.co/avlKEJThis would normally be where either Apple Pay or Google Pay is show, but it seems your theme doesn’t have the appropriate styling to integrate those buttons into its layout. If you aren’t wanting to accept these payment forms at all I would head into your Stripe settings in WooCommerce and disable the payment requests buttons. Otherwise, contact your theme developer so they can add the correct styling for these buttons. 🙂
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Invalid request errorHi @bartomatto,
I think part of the issue could be how you’re setup to take deposits and their additional payments.
I allow customers to make a deposit and a second payment of the rest for each order, and the second payment systematically fails and gives this error:”Sorry, we are unable to process your payment at this time. Please retry later.”
Could you explain how the above works, is it handled via a WooCommerce extension or in some other way? For example, I know via our Deposits extension on WooCommerce.com it creates a new order to collect the remaining amount. If you are working from the same order and trying to collect multiple payments on that one order this might cause issues.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Do not Honor Error MessageHi @raymond621,
What happens to the customer when payment is declined with an error code Do_not_honor?
To my best knowledge this is a response code from the bank and will mostly show a card declined error.
Link to image: https://cld.wthms.co/WHBWh0This normally to me says to check with my card issuer, but that is all the error will show currently with Stripe.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Need versions prior to 3.0Hi @mcheck,
To explain, Stripe prior to 3.0 was a paid for plugin from WooCommerce.com and thus we had it in a private repo and not on WordPress.org.
Is there any reason you can’t use the current version of Stripe? It doesn’t have too high of requirements for WordPress (4.4) and WooCommerce (2.6), so even the older versions can run the latest of Stripe.
Either way, here is the last release (pre 3.0) of Stripe from our private repo. –> https://cld.wthms.co/mCAlI2
Hi there @sawareco
The credit card icon size has become huge at checkout, and you can no longer enter card numbers. How can I solve it?
This is normally caused by themes that don’t include any styling for Stripe, but you mentioned you are using Storefront. It should have no issues with the layout for Stripe.
Could you share your URL so we can see the site itself and inspect for any potential CSS conflicts? Thanks!
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Update not shown in DashboardHi @dabesa,
This isn’t normal behavior, but could you explain what the plugin folder name was before you had renamed it. Also, what did you rename it to for it to then show the update?
My first assumption is that this could be perhaps a permissions issue, but also if the plugin folder is renamed to something non-default it might cause issues checking for updates. Thanks for any additional information you can provide!
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Payment form doesn’t showHi @awesomealice,
I believe you’re not seeing the Stripe payment form as your site isn’t loading over HTTPS. It appears you don’t have an SSL certificate installed yet for the site.
Link to image: https://cld.wthms.co/k5OGoiI would ask your host if they can do so for you and make sure that your site loads over HTTPS and not HTTP.
Hopefully that helps and makes sense.