Wutime
Forum Replies Created
-
v3.0.9 doesn’t work either.
Oh, PS, the new “look” for the settings in v3.0.9 is absolutely atrocious.
Not only does the plugin not work properly, but now it’s unnecessarily amateur, confusing, and even more bloated.
- This reply was modified 10 months ago by Wutime.
I disabled all plugins and tried numerous themes (2024, 2025, + shop theme). Same issue across the board with 3.0.7, v3.0.8, and v3.0.9 of the WooCommerce PayPal Payments plugin.
Switching the PayPal plugin to “pymntpl-paypal-woocommerce.1.1.10.zip” (Payment Plugins for PayPal WooCommerce by Payment Plugins) fixed all issues!
I didn’t realize there was a more stable plugin for PayPal payments.
This other PayPal payments plugin works like a dream.
I have the identical issue. Been tearing my hair out, and just found this thread.
I tried the patch, but it’s no better, where it used to say “Cannot read properties of undefined (reading ‘city’)”, it now says:
[Error] Not Found- This reply was modified 10 months, 1 week ago by Wutime.
Forum: Plugins
In reply to: [AdBlock Guard] Critical errormarking resolved now the install error has been fixed.
Forum: Plugins
In reply to: [AdBlock Guard] Critical errorHey, if your error was related the bug linked below, then it’s resolved:
https://ww.wp.xz.cn/support/topic/critical-error-on-this-website-55/Forum: Plugins
In reply to: [AdBlock Guard] Critical error on this websiteMarking resolved. Please open a new issue if it persists.
Forum: Plugins
In reply to: [AdBlock Guard] Critical error on this websiteThis issue has been resolved in v2.3.2, please upgrade and thank you for your time reporting the error.
Forum: Plugins
In reply to: [AdBlock Guard] Critical error on this websiteThank you for the detailed bug report. I’ll resolve and create an update.
Forum: Plugins
In reply to: [AdBlock Guard] Critical errorYes, did you submit a bug report? If you’re not sure how, you can submit through the plugin or by visiting my website and submitting a contact request.
Forum: Plugins
In reply to: [WooCommerce] Can’t disable “Sold individually”Out of curiosity, did you ever have WPSwings subscriptions plugin installed: https://wpswings.com/product/subscriptions-for-woocommerce-pro/
I had it installed for a minute, but then realized it wasn’t working well, so I uninstalled it. It’s the only funky thing I did with my installation.
Just baffled because this “sold individually” bug should be common with everyone and causing lots more people issues… seems just the two of us at the moment (or others simply haven’t noticed, or haven’t “updated” their products recently and tested to find out).
Thanks.
Forum: Plugins
In reply to: [WooCommerce] Can’t disable “Sold individually”Yeah, actually, I had to turn it off. The “beta” product manager is missing all sorts of functionality that Subscriptions needs, so it’s a bad idea.
I’m a new customer to WooCommerce Subscriptions. It’s really starting to feel like an alpha or beta version of software with the number of issues I’m finding and dealing with.
Waiting to see how support deals with things, but so far so slow.
Forum: Plugins
In reply to: [WooCommerce] Can’t disable “Sold individually”I have some good “temporary” news for you.
Enable [New product editor] here: /wp-admin/admin.php?page=wc-settings&tab=advanced§ion=features
This bug doesn’t seem to affect the “new product editor”. The checkbox behaves properly (it’s buried under “Advanced” at the bottom of the “Inventory” tab).
Cheers
Forum: Plugins
In reply to: [WooCommerce] Can’t disable “Sold individually”I just did some testing.
_sold_individually = ‘no’ (set it in the database manually)
Then, next, I loaded the page, the checkbox was UNCHECKED (makes sense). In the database, it was still set to ‘no’ (makes sense).
I disabled the “_sold_individually” as a checkbox element in the POST, so the element was NOT being submitted. I submitted the form with “_sold_individually” disabled in the form POST.
Next refresh, the box was checked AND the database entry for “_sold_individually” was set to ‘yes’.
TLDR: The _sold_individually is being updated automatically somewhere in the code of WooCommerce
This must be a bug.
Forum: Plugins
In reply to: [WooCommerce] Can’t disable “Sold individually”Mare13ki, changing the values in the database DOES fix the issue. However, if you ever edit the product, it will go back to defaulting to “sold individually”.
To find all the products with the value set to “yes” (checked), you can find them in the database with this:
SELECT * FROM
wp_postmetaWHERE meta_key = ‘_sold_individually’;For me, all my products are NOT sold individually, so I was able to update ALL products with this SQL statement:
UPDATE
wp_postmetaset meta_value = ‘no’ WHERE meta_key = ‘_sold_individually’;I don’t recommend doing any of the above personally, but for now, it worked for me.
- This reply was modified 1 year, 11 months ago by Wutime.