there is a problem creating a new rest_api key when the interface is not set to english.
my user wordpress interface was in hebrew and everytime i’ve tried to create a new rest_api key, the screen just reloaded and did nothing.
another thing i’ve encountered is that the shipping method is not functioning correctly when the wordpress user interface is not in english.
i’de appreciate if you can save us all
thank you!
]]>I want to create an API key, but when I click on the button, just the page reloads again and no keys are generated.
I deactivate all plugins, changes the theme, resaved the prelimark, but no success.
I am stuck in this problem, and I do not know what to do! help me please.
]]>Error details
Error message
Error parsing the response to JSON.
Response
rest_callback{"objects":[],"next_url":false}
]]>Can someone help me with the syntax?
]]>Thank you and great job on this plugin.
]]>1) Fetch all downloads for a users using GET /wp-json/wc/v3/customers/<id>/downloads
2) Pull out the product ids from each download and use them to search products using GET /wp-json/wc/v3/products
Therein lies the problem. The product_ids that come back on the download are linked to a digital variation of a book. The product list api endpoint does not return product variations as part of the search. Product variations do get returned when searching the product itself using GET /wp-json/wc/v3/products/<id>. Is there any query parameter I can add to the list endpoint that will include product variations? Otherwise I’ll need to query each product individually to collect proper urls and images to go along with the downloads.
]]>/`/Add menu order support for REST API
add_filter( ‘rest_post_collection_params’, ‘my_prefix_add_rest_orderby_params’, 10, 1 );
function my_prefix_add_rest_orderby_params( $params ) {
$params[‘orderby’][‘enum’][] = ‘menu_order’;
return $params;
}`
Then, query e.g: https://yoursite.com/wp-json/wp/v2/posts?orderby=menu_order&order=asc
Thanks for the plugin, it’s great!