top of page
To test this feature, visit your live site.
The Wix Wiz Community Forum
Welcome! Have a look around and join the discussions.
Velo (Wix Code)
Engage in discussions about Wix Velo on our Q&A forum. Ask tutorial-related queries, seek advice, and share your project
120Wix Classic Editor
Dive into Wix Classic Editor discussions on our Q&A forum. Ask questions, seek advice, and share your website projects.
27Editor X
Dive into Wix Editor X discussions on our Q&A forum. Ask questions, seek advice, and share your website projects.
7Wix Studio
Dive into the new Wix Studio discussions on our Q&A forum. Ask questions, seek advice, and share your website projects.
18Courses
Have questions about Wix Wiz courses? Ask away in our forum! Get the answers you need to enhance your learning.
3Apps & Templates
This is a channel dedicated to questions about apps and templates developed by the Wix Wiz Team.
7
New Posts
- Velo (Wix Code)Hello! I am trying to add schema to dynamic location pages through my cms. I have tried adding the code below but it does not seem to work. Can anyone give me any help please? Thank you. import wixSeo from 'wix-seo'; $w.onReady(function () { $w("#locations").onReady(() => { let item = $w("#locations").getCurrentItem(); if (item && item.LBschema) { try { let schemaJson = JSON.parse(item.LBschema); console.log("Schema Data:", schemaJson); wixSeo.setStructuredData(schemaJson); } catch (error) { console.error("Invalid JSON in LBschema:", error); } } else { console.warn("No schema found in LBschema field."); } }); });
- Velo (Wix Code)Hi Eitan, I am trying to take photo of user and store it in CMS. I want the user to select a button on which the web browser will ask for the user's consent for opening the camera of the device. Then with another button I want the user to take a photo from the user’s device and then upload. Is there a npm package that can help me achieve this? I have pasted the URL below with 2 screenshots https://www.dlpbadas-bd.org/course-registration-1
- Velo (Wix Code)Goal: Display Average Rating from wix-comments.v2 Background: I’m using Wix Comments as a workaround to Wix Reviews, as the latter can only be integrated with Wix Stores & not other listing types like services, properties etc I'm not a coder but have built many features with online resources. I've been trying this for months but hitting walls, if y'all can find the answer that would be mean a lot. Below is a Wix Comments Widget showing the exact component I need. However I want to show that info elsewhere; on the same page or another, via a text box or ideally a Ratings Display element. What I've tried: GPT & Velo Assistant code. But none of the code work, due to a few unknown IDs or syntax. Velo Asst. seems close to the solution. Here are different potential approaches. 1) 2) 3) Additional info: API ref: https://dev.wix.com/docs/velo/apis/wix-comments-v2/comments/introduction The following limited approach may have potential but has only worked for the following use case.
bottom of page