Frequently asked questions
Here is a list of our frequently asked questions
Wized V2 is currently invite only, with a peer-to-peer invite system. If you have not gotten a personal invite via email yet you will need to get your invite code from someone from the Wized community. New invites are given out to users on a weekly basis. The best way to find an invite from users is our Discord community.
Wized duplicates the template item, but the JavaScript attached to the template isn’t carried on to the clones.
To resolve this, Webflow should be re-instanciated.
To do this, use the following snippet and replace
"My Request Name"
with the name of your request that loads on the array you are using to render the list.<script>
window.onload = async () => {
Wized.request.await("My Request Name", (response) => {
setTimeout(()=>{window.Webflow && window.Webflow.destroy();
window.Webflow && window.Webflow.ready();
window.Webflow && window.Webflow.require( 'ix2' ).init();
document.dispatchEvent( new Event( 'readystatechange' ) );
console.log("Webflow Interactions have been reloaded!");
}, 100)
})
};
</script>
Wized renders client-side and doesn’t create unique slugs for content pages.
Furthermore, client-side rendering (CSR) means a website loads its content using Javascript after the page loads.
This can make it harder for search engines to understand what the page is about, and this can make the website rank lower on search engines.
CSR can also make the website slower to load, and this can also affect its ranking.
Yes, it’s possible to create a live chat with Wized. When it comes to the tech-stack, you have 3 options at your disposal. These are:
- Firebase
- Supabase
- Xano
Firebase, and Supabase allow you to use their realtime database, which can be used to build a live chat.
If you want to build a realtime chat app with Xano, you will need to use the Ably Realtime Chat Extension.
Yes, Wized makes it really easy to set up pagination. Follow these steps to set up pagination for your project:
- Create a
page
variable that keeps track of the page number - Create an Action that targets your Load More button, that will increment the
page
variable, and trigger your load items request - Update the logic of your request, so that the value of your
page
variable dictates which items are requested from your backend.
Tutorial coming soon.
Yes, you can use Wized to create a peer-to-peer invitation system.
Unfortunately, we do not have a tutorial that teaches you how to build this, but we have something similar.
You can apply the same concepts which we teach in the video, to create a peer-to-peer invitation system.
If you get stuck along the way feel free to reach out to our support team. We’re happy to help you out.
Yes, building a multi-step form with Wized is pretty straight forward.
You will need to use a single Webflow form that will contain all of your steps, and navigation buttons.
Then, you need to wrap each step into its own div.
Finally, you can create a variable in Wized that keeps count of the steps in your form, and use conditional visibility to show or hide the right step.
Debugging can be frustrating, and overwhelming. There are a lot of things that can go wrong, and it can be hard to know where to start from.
Since debugging is a complex topic, we wrote this step-by-step debugging guide to help you troubleshoot your Wized application.
This is a great place to start. If you’re still struggling to identify the issue feel free to reach out to our discord community or our support team.
We’ll be happy to help.
To deploy an app to a real domain, you will first need to upgrade to a paid plan.
Once you’ve done that, open your project, go to settings, domains, and add your production domain here.
Afterwards, you can publish your project to your production domain in the upper right corner of the configurator.
You can use several methods for uploading files.
You can use the built in methods which we provide, which include Supabase, Firebase, Airtable, and REST API.
Alternatively, you can use Uploadcare’s built-in widget, which can also be combined with other tools.
Of course! Creating a membership app is pretty straight forward.
You can choose between offering paid memberships, and free memberships.
For free memberships, all you need to do is set up Auth, and you’re good to go.
You can set this up by following our tutorials:
For paid memberships, the setup is a little bit more complicated.
In addition to the Auth setup, you will also need to set up Stripe for accepting payments, and you’ll need to find a way to sync the payment data from stripe with your database.
You can either use a webhook, or a regular API call on the backend.
The implementation will depend on your backend of choice.
Yes, you can build a two-sided marketplace. In fact, we have a guide that will teach you how to set this up.
Choosing a database depends on project size, data type, expected traffic, budget, and development team expertise. Here are some general guidelines:
- If your app does not need to be performant nor scalable, and you’re a non-technical person, then Airtable is a great choice.
- If you have experience with PostgreSQL, or NoSQL, and you want maximum flexibility, and scalability , while keeping your costs at a minimum, then Firebase, or Supabase might be worth looking into.
- If you want to build a highly scalable, and customizable backend, without having to deal with code, then Xano is your best bet.
Like I said at the beginning. The best database for your project will depend on your project, and your technical proficiency.
Input field validation can be done with help of variables, regular expressions, and a few simple functions.
When it comes to form validation, you have two options.
To provide the best experience for your users, we recommend using both of these approaches.
Last modified 1mo ago