jQuery( document ).ready(function($) { var paths = location.pathname.split("/"); var apiURL = 'https://club.museodelhongo.cl/wp-json/wc/v3'; var orderId = 0; // Cambia esto por el ID de // Clave de autenticación (API key) var apiKey = 'ck_b1595d901fd5c33cca1cf7a3e3e43c71a2f23c23'; for(var i=0; i< paths.length; i++){ if(isNumeric(paths[i])){ orderId = paths[i]; } } // ID de la orden que deseas consultar if(orderId){ $.ajax({ url: apiURL + '/orders/' + orderId + '?consumer_key=' + apiKey + '&consumer_secret=cs_e56d259e221f78a9ff56e158fb7b6005e72b9f7d', type: 'GET', dataType: 'json', success: function(data) { var estado = data.status; console.log("estado",estado); setTimeout(() => { console.log("Retrasado por 5 segundo."); location = "/mi-cuenta/edit-account/"; }, 3500); }, error: function(error) { console.log('Error al obtener la orden: ', error); } }); } console.log("se ve"); }) function isNumeric(str) { if (typeof str != "string") return false // we only process strings! return !isNaN(str) && // use type coercion to parse the _entirety_ of the string (`parseFloat` alone does not do this)... !isNaN(parseFloat(str)) // ...and ensure strings of whitespace fail }