Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

188
Views
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 answers
Answer question

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 Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!