pawelkmpt
Forum Replies Created
-
Thanks Patrick for reply and information! Let’s close this thread and keep everything in the other one if you already covered the topic there.
For users landing at this page, check out this comment: https://www.ads-software.com/support/topic/migrate-from-skyverge-braintree-extension?replies=3#post-8590652
WooThemes support told be: “The Braintree extension has been retired in favor of the free extension, PayPal Powered by Braintree. You should go ahead and switch as the older plugin will not be updated.”
From the other side, they released an update to 3.3.1 on 16.06.2016. Also new plugin doesn’t work for all countries: https://docs.woothemes.com/document/woocommerce-gateway-paypal-powered-by-braintree/
I was looking at this issue and it seems that when internet connection is slow or user is using mobile (case reported by client) fields are still not loading. Are you still having problems with it or found the way to solve it?
I also found out that
braintree.js
itself has browser requirements and I’m wondering if issue on mobile can be related to the old browers/systems version: https://developers.braintreepayments.com/reference/client-reference/javascript/v2/browser-supportForum: Plugins
In reply to: [WooCommerce] Layered Nav widget seems broken after 2.6 update (wrong counts)I confirm too it solves the problem.
Forum: Plugins
In reply to: [WooCommerce] WC REST API – how to add product variations?Actually following code is enough to insert variation:
{ "product": { "type": "variable", "variations": [ { "virtual": true, "regular_price": "123" } ] } }
so
"type": "variable"
is a key attribute here.Forum: Plugins
In reply to: [WooCommerce] WC REST API – how to add product variations?Well, docs don’t say anywhere which attributes are required for specific actions.
You code doesn’t work either, one more attribute is missing:"type": "variable"
. When I add it everything works.See: https://github.com/woothemes/woocommerce/blob/master/includes/api/class-wc-api-products.php#L394
Forum: Plugins
In reply to: [WooCommerce] WC REST API – how to add product variations?This I know and PUT works for updating single product and elements of variable product like title, description etc. It also works for updating already existing variation. But when I’m trying to add new variation with following code, it’s not added to the system:
{ "product": { "variations": [ { "regular_price": 123, "virtual": true } ] } }
PUT: https://example.com/wc-api/v3/products/736?consumer_key=ck_123&consumer_secret=cs_123
736 is ID of variable product.
Is there any list of required attributes necessary to create product variation? I also tried to add
"attributes"
array and it didn’t work either.Yeah, I have exactly the same error…
Forum: Plugins
In reply to: [Quotes Collection] Multi WidgetsIt would be useful for the widget to set number of quotes to display.
After debugging the code of Relevanssi I found out that Membership plugin affects on search results. Defining rules for particular membership level automatically define search rules.
If you define positive rule it means that searching will be only within those rules (eg. only in defined categories).
If you define negative rule it means that searching will be everywhere, but not within those rules (eg. everywhere but not in disallowed categories).
So it wasn’t fault of Relevanssi but Membership plugin. But they don’t mentioned anything about search results…