Is it possible to build URLs that have a search in it?
EXAMPLE : https://www.mytutorialcenter.com/training-progress?search=yancey
I’ve seen this on other websites before and would love to be able to do it on mine. Any articles or posts on how to?
Yes. You can add query parameters to any URL you wish.
Then on the page code you retrieve it like this:
import wixLocation from "wix-location";
let toSearch = wixLocation.query.search;
You can use Custom Search JSON API by Google too!
Is there a specific article about this?
@J.D I figured it out! Thanks so much for the lead.