Rynald0s
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] check out page is not workingHi @nkwebdesign
A “waiting circle” or “endless spinner” is usually indicative of a javascript error, coming either from your theme or another plugin. If you have’t already, please inspect the browser console on your checkout page (while trying to process a checkout), and see what it returns. You are welcome to share any error messages you see in the console here so we can take a closer look.
Alternatively, you could also perform a conflict test by temporarily switching to another default WordPress theme like Storefront, and disabling all your plugins except for WooCommerce core and your gateway, to see if that makes a difference. If the issue goes away, it was indeed a conflict and you will need to re-enable your plugins until it breaks again, then contact the author of the conflicting plugin.
We have documentation on how to perform the conflict test here:
https://woocommerce.com/document/how-to-test-for-conflicts/
As for the SoapClass client issue, you would need to contact your hosting provider and ask them to enable that module.
Cheers!
Forum: Plugins
In reply to: [WooCommerce] Product Variations – AttributesYou’re very welcome!
As we close this up, another possibility is to run a script to remove any unused attributes on product variations, after converting your product. There’s one such script here and still works:
https://gist.github.com/yratof/f21242d4263c461f4a5b6b766cd24373
If you have a few minutes, we’d love if you could leave us a review: https://www.ads-software.com/support/plugin/woocommerce/reviews/
Cheers!
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Integration – API Automatically generatedHi @rifatspir
I understand that, as per the screenshot you attached, the API key there automatically generated after updating WooCommerce core?
By default, core alone won’t do that as far as I know. Are you using any third-party integrations with the REST API and if so, what for exactly?
Could you please provide us with your status report as found under “WooCommerce > Status” page so we can take a closer look at this?
Cheers!
Forum: Plugins
In reply to: [WooCommerce] woocommerce unpaid orderHi there.
If you want to disable an order status you can unset it with some code, similar to what you see here https://stackoverflow.com/questions/39252649/how-to-remove-woocommerce-order-status
You can also change the behaviour of all pending orders that are paid with a specific gateway (in your case, PayPal), and automatically set them to be on-hold, using code similar to what you see here https://stackoverflow.com/questions/38741747/woocommerce-order-status-change-from-payment-gateway
You can use the free https://www.ads-software.com/plugins/code-snippets/ plugin to add custom code to your site.
Cheers!
Forum: Plugins
In reply to: [WooCommerce] Remove Stars/Pricing from Footer WidgetYou can try the following CSS and see if that helps:
.woocommerce ul.product_list_widget li .star-rating { display: none; } span.woocommerce-Price-amount.amount { display: none; }
Cheers!
Forum: Plugins
In reply to: [WooCommerce] Two currency, both visible?Hi @istrasport
Have you tried my interim solution here?
https://github.com/woocommerce/woocommerce/issues/34463#issuecomment-1227165204
Cheers!
In order to better understand what exactly that injected product looks like, we will need to ask for a link to where that exhibits.
Cheers!
Hi @lightgal
I’m glad we were able to help!
If you have a few minutes, we’d love if you could leave us a review: https://www.ads-software.com/support/plugin/woocommerce/reviews/
Cheers!
Hi @lightgal
You can try the following CSS code to see if that helps. Remember to change the colour with your own preferred hexadecimal colour code:
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce .woocommerce-message a.button:hover, .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce input.button:hover, .woocommerce button.button.alt.disabled:hover, .wc-block-grid__products .wc-block-grid__product .wp-block-button__link:hover { background-color: #d90b0b; }
Cheers!
Forum: Plugins
In reply to: [WooCommerce] Error in PHP error logsHi @wood1e
Are you by any chance using Facebook for WooCommerce? If so, which version?
If not, then another plugin is still making use of the code
Loader::is_feature_enabled
function.With that said, please provide us with your status report found under “WooCommerce > Status” page so we can take a closer look.
Cheers!
Forum: Plugins
In reply to: [WooCommerce] Two currency, both visible?Hi @istrasport
By default, WooCommerce core can only display a single currency at a time. There are of course currency converters such as Currency Converter Widget that you can use.
You could also use some code, similar to what you see here:
https://www.themelocation.com/display-two-currencies-in-woo/
If you do use the code, you can add it to your site using a free plugin like https://www.ads-software.com/plugins/code-snippets/.
As this is something that will affect all of Croatia, I have also gone ahead and opened an enhancement request at the following link so you can follow along. The developers will chime in there.
https://github.com/woocommerce/woocommerce/issues/34463
Cheers!
Forum: Plugins
In reply to: [WooCommerce] Checkout page RegistrationForum: Plugins
In reply to: [WooCommerce] Checkout page RegistrationHi @mairh93
Thanks for sending those screenshots.
As a next step, please provide us with your status report found under “WooCommerce > Status” page so we can take a closer look at your setup (theme, plugins, etc.), to see if there are any red flags that may help us see where the trouble is coming from.
Cheers!
Forum: Plugins
In reply to: [WooCommerce] Order search is very slowHi @cutu234
The scalability of WooCommerce depends a lot on the specifications of the server you’re running it on. Realistically speaking, this is what the ongoing work around custom order tables aims to improve and which you can read about and follow along at the following links:
https://developer.woocommerce.com/2022/01/17/the-plan-for-the-woocommerce-custom-order-table/
https://github.com/woocommerce/woocommerce/issues/28373
https://github.com/WordPress/performance/issues/132
You’ll also find some interim solutions there.
Just for curiosity sake, would you mind sharing your status report here so I can take a quick look at that?
Cheers!