Thomas Shellberg
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Stripe alongside other card processorHi @bigedy79,
I suppose that you could hide the Stripe gateway on the Checkout page using CSS.
li.payment_method_stripe { display: none; }Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] WC + Stripe simple API-connectionHi @sheldon66,
No custom webhook or file necessary; the Stripe plugin comes with a filter for this, named
wc_stripe_sepa_mandate_notification.It’s located here:
Forum: Plugins
In reply to: [WooCommerce] Rest API 302 found redirect to loginHi @csyecommerce,
This is usually an issue with either your permalinks or your site’s rewrite rules.
* Make sure you have some form of Pretty Permalinks set up.
* Try disabling any files or plugins temporarily which can create redirects. For Windows servers, this means renaming the web.config file; for Apache, this means the .htaccess file.
* This plugin might help with troubleshooting your rewrite rules:Forum: Plugins
In reply to: [WooCommerce] Customer charged twice in NABHi there,
>The customer sends us proof that they have been charged twice for the purchase and this double charge matches our NAB transactions.
Ideally, the plugin should prevent this by disabling the Place Order button while the transaction is being processed.
When your customers are double-charged, is there only a single WooCommerce order or are there two duplicate orders?
If there is a single order but two transactions you should be fine if you just refund the extra amount within your merchant account rather than perform the refund within WooCommerce.
I would recommend creating a ticket with your NAB plugin developer to determine how to avoid duplicate charges to avoid this altogether.
Hey @mayank29gupta,
By default, the price should already show up above the Add to Cart button.
You’ll need to make sure that you call remove_action() with the correct priority or the hook won’t actually remove the template portion.
This won’t work because the priority isn’t correct:
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 25 );This should work:
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );Forum: Plugins
In reply to: [WooCommerce] How to configure WP Super Cache?Hey @sonicmedia,
From a general standpoint, the answer @braehler provided is correct; exclude those pages from cache to avoid issues with checking out. As for configuration for a general WordPress site, I would review the WP Super Cache documentation.
- This reply was modified 6 years, 10 months ago by Thomas Shellberg.
Forum: Plugins
In reply to: [WooCommerce] Privacy Policy page added after update@henrybaum – If you click the ‘x’ next to the currently selected Page and save the settings page you shouldn’t have a Privacy page set by the core WooCommerce plugin; it should then disappear from the Checkout page. After saving, make sure to clear browser and site cache and re-test.
If you are also referring to the Terms and Conditions page, that is set at WooCommerce->Settings->Advanced->Terms and Conditions. To not show Terms and Conditions at checkout, leave that blank.
If it’s still doubled, try testing with only the WooCommerce plugin activated to see if the Terms and Conditions page shows up.
Forum: Plugins
In reply to: [WooCommerce] Showing a Transaction ID (AuthorizationCode)Hi @iarias,
I’m not sure I totally understand this request, so, perhaps you could explain a bit further about what exactly you are trying to accomplish.
You mention this:
wc_gateway_cardnet– are you sure that you are using this Stripe plugin for taking payments?If so, are you trying to add custom text to a page after a user processes a payment with the Stripe plugin? It sounds like you could do that by using a custom Thank You page:
https://www.tychesoftwares.com/how-to-customize-the-woocommerce-thank-you-page/
Forum: Plugins
In reply to: [WooCommerce] New orders are not showingHey @camjk777,
Glad to hear that it’s working for you. It may have also been caching as well, either browser-level or server-level.
Marking resolved.
Forum: Plugins
In reply to: [WooCommerce Admin] Endless Admin redirectsHey @emilian94,
Does this happen if only WooCommerce and the WooCommerce Admin plugins are activated?
If you use the Network tab of your browser’s Developer Tools, can you see the redirects(301/302 HTTP response codes)? Do you know what the /wp-admin/ URL is trying to redirect to?
We 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] Missing inputs in CC formHey @cohemelaqk,
It looks to me like your
/it/checkout/page is not loading the JavaScript from Stripe needed to process payments. You can use the Debugger tab of your browser’s Developer Tools to debug further. Perhaps a plugin(like an optimization plugin) or a caching plugin is omitting the JavaScript files needed to process the credit card through Stripe.Forum: Plugins
In reply to: [WooCommerce] WooCommerce PayPal Here PluginHey Michael,
As this support forum is for the core WooCommerce plugin, I ask that you please direct this question to the PayPal Here plugin support forum:
https://wordpress.org/support/plugin/woocommerce-paypal-here-gateway/
Thanks!
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Product Search IN Backend/AdminHi @noople,
The easiest solution here is probably to search by more identifiable criteria – for instance, the product title, the variation title, a SKU, or the product ID.
You could look at extending/modifying the search functionality using some code customization. Maybe this tutorial will help:
https://mircian.com/2018/04/06/extending-woocommerce-admin-product-search/
Forum: Plugins
In reply to: [WooCommerce] Custom Order Received/Tank you page per gatewayHi @exxis,
It looks like there are a couple of premium versions of plugins that can do it:
https://wordpress.org/plugins/woo-thank-you-page-nextmove-lite/
https://shopplugins.com/plugins/woocommerce-redirect-thank-you/?ref=2
I can’t vouch for any of these as they’re third-party plugins but hopefully that helps.
Otherwise, you could create a customization yourself if you’re familiar with PHP programming.
https://www.tychesoftwares.com/how-to-customize-the-woocommerce-thank-you-page/