Thomas Shellberg
Forum Replies Created
-
This has been answered already so I’ll mark this resolved:
https://wordpress.org/support/topic/changing-sepa-debit-on-hold-to-processing-automatically/
Hi there,
I’m not totally sure what you mean, but a payment must atleast be scheduled in the future. The button is displayed based on conditions set by the Subscriptions plugin.
You can check the conditions here:
https://docs.woocommerce.com/document/subscriptions/customers-view/#section-12
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] latest update broke my siteHi there,
The WC_Stripe_Apple_Pay class is no longer named that; additionally, the button is no longer displayed on the Checkout page.
You are safe to remove that from your functions.php file.
Twenty Seventeen theme with no extra CSS:
Hi there,
This looks nice and clean for me when I test with Storefront:
I would test with a default theme(Storefront or 2017) and see if you get better results. Your theme may have some custom CSS which is too broad and affecting the checkout options.
Hi there,
The customer in this case should create a new mandate by going to My Account->Subscriptions, click View next to the Subscription, then Change Payment.
From there they can add the new SEPA details, including IBAN.
Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] latest update broke my siteHey Emily,
Sorry about that, but glad to hear that you had a backup. Do you have access to your server’s error logs by chance? You could look for the timestamp of the error and reply back with the exact error message found in your error logs.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce shop very slowYou can copy the site to a local development environment and run the site using something like Local by Flywheel or VVV to see if it runs better locally. That would tell you if your hosting provider is slow.
If your custom code loops through every single variation of every single product in order to display the ‘Sale’ sign and there’s 5000+ variations for some products, that could certainly slow it down.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce product image displayHello there,
Unless I am misunderstanding something, you stated that you wanted Lightbox support, but you have it removed based on the code shown above?
What exactly do you want to see when viewing a product with multiple images?
Hey Garry,
You have the right idea here; you would need to use remove_action first, then re-add the action using a different priority number. Your examples seem to show the same priority numbers.
More info here:
https://wisdmlabs.com/blog/reorder-content-woocommerce-product-page/
Forum: Plugins
In reply to: [WooCommerce] Thumbnails and reviews not showingHi there,
Did you resolve this already? I am seeing the image thumbnails now:
I did notice, however, that your Category pages are not showing images. Looking at your status report, I can see that your theme has a template override for the category archive page:
flatsome/woocommerce/archive-product.php
Can you try renaming that file temporarily and re-testing? It will disable the override so you can see if it works without the override.
- This reply was modified 8 years, 4 months ago by Thomas Shellberg.
Forum: Plugins
In reply to: [WooCommerce] Flat rate shipping with couponHello,
Why not just set up a $5 flat rate shipping cost for all customers? What would the cost be if they did not use a coupon?
You should probably just set up Flat Rate shipping with a normal cost(say, $10), then offer a coupon for $5 off of the shipping cost.
Hope that helps!
Forum: Plugins
In reply to: [WooCommerce] Conflict with template – Can’t load payment methodsThe Order Details area is refreshed via JavaScript so that every time the shipping address is modified the shipping amount is recalculated.
If you have JavaScript errors on the Checkout page it can prevent that “refresh” JavaScript from running. I see JavaScript errors on your product and checkout pages:
I would start here:
https://codex.wordpress.org/Using_Your_Browser_to_Diagnose_JavaScript_Errors
Forum: Plugins
In reply to: [WooCommerce] How can I trace plugin errorThis appears to be the free Klarna Checkout plugin from Krokedil:
https://github.com/krokedil/klarna-payments-for-woocommerce/issues/59
According to that issue, it should be resolved by updating the plugin. If you run into further issues, you can contact the plugin developer on GitHub through the Issues page.
- This reply was modified 8 years, 4 months ago by Thomas Shellberg.
Forum: Plugins
In reply to: [WooCommerce] Change ‘Add To Cart’ text to a buttonHey Jeanne,
This is determined by your theme, you can see that even on the Shop page, the Add to Cart links are not buttons:
https://www.futuristicpathwaysforeducation.com/shop/
Using Storefront as an example, the Shop page has buttons for links:
WooCommerce adds a “button” class to each link, so you’ll just need to add some CSS to target the “button” class and make it look like a button. 🙂
- This reply was modified 8 years, 4 months ago by Thomas Shellberg.