Thomas Shellberg
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Recurrent payment with wrong source IDWe haven’t heard back from you in a while, so I’m going to mark this as resolved – if you have any further questions, you can start a new thread.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Stripe Multibanco (Portugal)Hi @joelseq,
The Multibanco payment method in Stripe indeed uses a source to charge just the same as all the other payment methods so this shouldn’t be an integration issue.
Are you sure that you have added your website URL to the Webhooks area within your Stripe account?
You can find your webhook URL by going to WooCommerce->Settings->Payments->Stripe. Copy that URL for the next step.
Within your Stripe account, go to Developer->Webhooks and add the webhook URL copied from earlier.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Issue with 3d secure paymentsHey @abdullahnxb,
Have you tried with an alternative hook, something like
woocommerce_payment_complete?Hi @olivierwabby,
The Stripe plugin still has 3D Secure capability, however, 3D Secure is not enabled through a setting in the plugin any longer. It is set using your Stripe Radar rules which are set within your Stripe account.
You should see a notice in your WordPress admin area from Stripe regarding this but here is more information about Radar rules:
https://stripe.com/docs/radar/rules
Specifically, you’ll want to look at the 3D Secure rules like this:
Request 3D Secure if 3D Secure is supported for cardForum: Plugins
In reply to: [WooCommerce] Avoid WC to override PO file during updateHey @demian85,
he appropriate way is to add a new directory based on the plugin name woocommerce; so /wp-content/languages/woocommerce/ and you add here your custom .po .mo files.
Spot on; this should work and should be upgrade-safe.
Forum: Plugins
In reply to: [WooCommerce Square] Square payment issueYour last log file is for the payment gateway, thanks for supplying that! It looks like the Square gateway is working properly. Therefore, if the checkout process fails for some reason it’s likely caused by another reason.
Try disabling all plugins other than WooCommerce + Square and make sure to disable any customizations you have, then test this again.
Forum: Plugins
In reply to: [WooCommerce] woocommerce sms api integrationI want to integrate sms API with WooCommerce
That’s great, and I wish you the best of luck! The forums here are designed for support for the WooCommerce plugin, and while you may find some help/advice with questions surrounding code customizations, your question is probably bit too open-ended for this forum. We’re not going to be able to sketch out an entire integration here on this forum.
You seem to have already a bit of code written, so, you’d want to create a plugin and activate it in order to use its functionality on a site.
https://codex.wordpress.org/Writing_a_Plugin
Otherwise, you could look at simply using existing SMS integrations for WooCommerce.
https://woocommerce.com/products/twilio-sms-notifications/
https://zapier.com/apps/sms/integrations/woocommerceForum: Plugins
In reply to: [WooCommerce] How to Disable All Coupons for Cash On DeliveryHey there,
How about checking if a coupon is applied like this?
if( ! empty( $woocommerce->cart->applied_coupons ) ) { $is_cod_available = false; }Forum: Plugins
In reply to: [WooCommerce] WooCommerce Buttons not picking up default theme text colourHey @pandappa,
It’s hard to provide help here without being able to see the problem. It could be that your theme or a plugin is changing the class of the button(s). Here’s what it looks like for me:
The classes added to that button is as follows:
woocommerce-button button viewIf your theme or a customization changes those classes, you’ll want to add some custom CSS to target those custom classes.
Forum: Plugins
In reply to: [WooCommerce] Add to Cart button aren’t workingHey @sajtosmakaroni,
As the others mentioned here, there is a JavaScript error shown in the console which is generated by Autoptimize. There definitely looks to be an issue with the configuration of Autoptimize. Hopefully they can help you get that sorted.
Hi there @tjendol,
I tested this on my local environment but couldn’t reproduce this with WooCommerce 3.6.5 and the Storefront theme:
(screenshot)
https://cld.wthms.co/fY3cuqI tested both with a default variation value as well as adding the attribute in the URL as a query string but both times I had the ‘Clear’ button visible.
I would suggest running a conflict test using a default theme and with just WooCommerce activated.
Forum: Plugins
In reply to: [WooCommerce] woocommerce sms api integrationHi @76tagztech,
Interesting idea, however, I’m not sure that I see a question here? What problems are you running into or what advice are you looking for here?
Forum: Plugins
In reply to: [WooCommerce] Something is wrong with Woocommerce?Good to know that it’s working. Perhaps it was a temporary outage or server error.
Cheers!
Forum: Plugins
In reply to: [WooCommerce] Avoid WC to override PO file during updateThere’s a section in the documentation here about how to make your translations update-safe:
https://docs.woocommerce.com/document/woocommerce-localization/#section-8
Forum: Plugins
In reply to: [WooCommerce] Add nofollow to affiliate links in WoocommerceYou could do this with a customization like the one described here:
https://www.tychesoftwares.com/how-to-make-woocommerce-external-product-links-open-in-a-new-tab/
The overall point of that blog post is to open the link in a new window but it adds a nofollow tag at the same time to the external links.