Hello! I recently contacted Eix support about something I wanted on my website and they contacted the dev team and then the dev team told me to ask here, so here goes nothing.
I’m starting my first online business and decided to use wix. I have access to over 400+ products and are wanting to do custom orders for people as well. What we want is a page where there will be an input box (password/code) and it will send you to a page that is hidden (password holder) for them to view their custom orders when they are ready. This will allow them to come back and view the orders at anytime and share them with others. We was trying to make it under a page called “Custom orders” with just a little imput box where you could type the orders page’s password and hit enter and it sends you to it.
Anyone how a code or a way to do this, and if not other way close to it?
Thank you very much ahead of time!
-Ahren
Founder of First Responders Studios
You don’t tell what kind of Wix-Stuff you already use?
-Do you use Wix-Stores?
-Do you have already something working?
So your description is pretty vague.
Sounds like you want a site where you fill out custom orders that is not using the stores or any other API, just essentially a page with the information the client can read and contact you to accept.
If that is correct it sounds like you should make a dynamic page where the primary field is the “password”
The entry into the collection(database) then can contain a rich text with the custom order, a price field etc. you connect to on the page
You make a dynamic page connected to this collection and show individual items. but to be shown any of the items you need to know the primary field. leaving you with links like
www.myfirstOnlinebusiness/custom-Orders/bbnrjbut
would that solve your issue ?
Thank you I’ll check it out when I’m waking up to see if this is correct.
Hello, thanks for asking we have a store set up. You can see more of what we have already at https://ahreneichelberger.wixsite.com/first-responders-stu
I’m simple it down so it can be a bit easier to explain.
I want like an imput box on a page. Say if others page Password is testing
Then back on the page with the imput box they put in testing
and hit enter it will send them to that page.
Which is why i would suggest dynamic page. So the “password” becoming the name of the page and upon clicking button it loads the page.
So
$w('#button').onclick((event) => {
wixlocation.to("/customOrder/" + $w('#inputField).value);
})
So clicking the button would take the value in and send to a dynamic page called example
www.randomDomain.info/customOrder/testing
showing their unique entries in the custom order database.