Fix Shipping dropdown not displayed because of an authentication error

This commit is contained in:
Daniel Hüsken 2025-02-28 09:03:13 +01:00
parent 758419c980
commit 3a740db289
No known key found for this signature in database
GPG key ID: 9F732DA37FA709E8
2 changed files with 6 additions and 6 deletions

View file

@ -23,7 +23,7 @@ use WooCommerce\PayPalCommerce\Button\Endpoint\RequestData;
*/
class UpdateShippingEndpoint implements EndpointInterface {
const ENDPOINT = 'ppc-update-shipping';
const WC_STORE_API_ENDPOINT = '/wp-json/wc/store/cart/';
const WC_STORE_API_ENDPOINT = '/wp-json/wc/store/v1/cart/';
/**
* The Request Data Helper.

View file

@ -21,7 +21,7 @@ export const handleShippingOptionsChange = async ( data, actions, config ) => {
credentials: 'same-origin',
headers: {
'Content-Type': 'application/json',
'X-WC-Store-API-Nonce':
'Nonce':
config.ajax.update_customer_shipping.wp_rest_nonce,
},
body: JSON.stringify( {
@ -106,7 +106,7 @@ export const handleShippingAddressChange = async ( data, actions, config ) => {
credentials: 'same-origin',
headers: {
'Content-Type': 'application/json',
'X-WC-Store-API-Nonce':
'Nonce':
config.ajax.update_customer_shipping
.wp_rest_nonce,
},