Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

189
Vistas
Changing URL parameters in wordpress

I have a site with this URL: https://my_site.cz/index.php/prices/order/?button=1. I want to change URL parameter button to 0. I tried this javascript code:

var queryParams = new URLSearchParams(window.location.search);
queryParams.set("button", "0");

But it didn´t work. I tried other sugestions but the button variable remains unchanged. How can I change the variable? Thanks for any help (I use wordpress and a Divi theme from Elegant themes.)

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

The queryParams are currently a copy of the window.location.search values. You'll need to assign the search property of the location object to update the search params in the URL.

var queryParams = new URLSearchParams(window.location.search);
queryParams.set("button", "0");
window.location.search = queryParams;

When assigning an instance of URLSearchParams like here above, it will call the toString() method on the URLSearchParams object and convert the object to a string.

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda