Mike M. a11n
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] TranslationHey halvardb! In the Stripe settings(WooCommerce > Settings > Checkout > Stripe) you’ll see an option named Stripe Checkout Locale. Setting this option to Auto will use your customers preferred language.
- This reply was modified 8 years, 4 months ago by Mike M. a11n.
Forum: Plugins
In reply to: [Braintree for WooCommerce Payment Gateway] Paypal functionalitySorry about that! I should’ve included more information. This code snippet would need to be added to your themes
functions.php
file or via a plugin such as Code Snippets.Thank you for the help. Let me know where you suggest adding your filter or if I can just make this a constant false boolean. Would there be any ripple effects for that?
Editing the plugin directly is a bad idea. Any changes would be overwritten in future updates.
Let me know if you have any trouble!
Hi d100etriot,
I’m not sure I understand your question. WooCommerce Stripe will allow users to checkout on any modern smart phone. Let us know if you have any other questions.
Hi korshakov,
Thanks for the link! It looks like your server is having trouble serving up SVGs as images. To fix this, you’ll need to edit your
.htaccess
file to add the following line:AddType image/svg+xml .svg .svgz
You should find your
.htaccess
file in the root of your server. If not, you can create a file, add the line of code from above, save it as.htaccess
, then upload it to the root of your server.Let us know how it goes!
I did discover just a day ago in another thread however, that it was a conflict with the WooCommerce Gift Card plugin. Hopefully that author will come up with an update soon and fix that.
Glad you discovered it was a conflict! I’ll mark this resolved, but let us know if anything else comes up.
Forum: Plugins
In reply to: [Braintree for WooCommerce Payment Gateway] Paypal functionalityHey there,
The following code snippet will remove the PayPal button from the Cart page:
add_filter( 'wc_gateway_paypal_braintree_data', '_wc_remove_braintree_checkout_with_paypal' ); function _wc_remove_braintree_checkout_with_paypal( $data ) { unset( $data['checkoutWithPayPal'] ); return $data; }
Hope that helps!
Forum: Plugins
In reply to: [WooCommerce PayPal Checkout Payment Gateway] Stock reduced twiceHey Warren,
Thanks for looking into this. This will be fixed in an upcoming release.
Hi Chester,
We’re seeing some issues with guest checkout. A future release will take care of this with a custom confirmation page when returning from PayPal.
Hi,
Which strings/text are you trying to translate?
Forum: Plugins
In reply to: [WooCommerce PayPal Checkout Payment Gateway] translation missing in pageHi Pierre,
Looks like your URL has a typo. Can you post the full URL?
Hi digitalup!
The error code is: 3
And long message is: An error occurred while trying to connect to PayPal: Operation timed out after 5001 milliseconds with 0 bytes received.A timeout when trying to connect to PayPal is often caused by a conflict with another a plugin such as a security plugin. Can you try to reproduce the error with only WooCommerce and PayPal Express Checkout enabled?
Thanks for the reports! This will be fixed in an upcoming release.
Hi,
This has been fixed but not yet released. For now you can download the the master: https://github.com/woothemes/woocommerce-gateway-stripe/archive/master.zip.
You’ll want to upload this manually by unzipping the file and uploading the contents of the contained folder to your
wp-content/plugins/woocommerce-gateway-stripe
directory via FTP, allowing old files to be overwritten.Hi,
It looks like your theme is using a broad selector to style images, causing the credit card images to expand. This CSS should help:
.payment_method_stripe label img { width: 32px; }
Forum: Plugins
In reply to: [WooCommerce PayPal Checkout Payment Gateway] Multiple errorsHi shawaj,
I’ll be happy to address your concerns.
1) this plugin blocks PayPal standard from working
Yes, PayPal Standard is disabled when PayPal Express Checkout is enabled. When PayPal Express Checkout is enabled, it will be used as the PayPal gateway.
2) this plugin does not show as an option for payment on the checkout page (stripe and bitcoin payments also enabled)
PayPal Express Checkout should be showing as a payment gateway on the checkout page. If it’s not, then there may be a conflict with your theme. You can test this by switching to a default theme like Twenty Sixteen.
3) this plugin shows a badly misaligned icon on the cart pae
By default, the button should sit below the “Proceed to Checkout” button, aligned right. If the position seems off in your theme, you can add some custom CSS to line it up. If you have a link, we’ll be happy to help ??
4) if you enable the “in context checkout” the plugin does not show on the cart page at all.
This is correct. With “In-Context Checkout” enabled, the PayPal button is removed from the cart page. PayPal is still available as a payment gateway option on the checkout page. When checking out with In-Context Checkout, a small window opens above your checkout page allowing the customer to complete the payment process all within the context of your site which is a lot more seamless than sending the customer offsite to complete payment.
We’re more than happy to help you work through any issues ??