top of page
Crumpled Fabric

0

Add Search to Wix Lightbox & Display Result on Another Page

Click URL to copy

Jun 6, 2024

2 min read

WIX Ideas Team

Tags: Wix Lightbox Search Bar Wix Velo Lightbox WIX Data Dataset

Adding search functionality to your Wix site can significantly enhance the user experience by allowing visitors to quickly find the content they need. In this blog post, we will walk you through the steps to implement a search bar within a Wix Lightbox and display the search results on another page. This can be particularly useful for websites with extensive content, helping users to navigate and discover information efficiently.


Step 1: Setting Up the Lightbox

First, we need to create a Lightbox on your Wix site. The Lightbox will serve as the pop-up where users can enter their search queries.


  1. Create a Lightbox:

    • In the Wix Editor, go to the “Add” button (+) on the left side of the screen.

    • Select “Interactive” and then “Lightbox.”

    • Choose a template and customize it according to your needs.

  2. Add a Search Bar:

    • Inside the Lightbox, add an input field (search bar) where users will type their search queries.

    • Add a button next to the search bar, which users will click to initiate the search.

  3. Add Code to Lightbox:

    • Open the Code panel (Dev Mode) and add the code below to your lightbox

The lightbox code captures the search query from the input field and updates the URL with the search parameters. When the user presses "Enter" or clicks the search button, they will be redirected to the search results page with the query parameter appended to the URL.


Step 2: Setting Up the Search Results Page

Next, we need to create a page that will display the search results.


  1. Create a Search Results Page:

    • In the Wix Editor, add a new page and name it “Search Results” or something similar.

  2. Add Elements to Display Results:

    • Add a dataset connected to the collection you want to search within.

    • Add a repeater or list to display the search results.

  3. Add a Search Bar:

    • Add an input field (search bar) and a search button to the search results page. This allows users to refine their search directly from the results page.

  4. Add Code to Search Results Page:

    • Open the Code panel and add the search result page code below to the page.


The search page code retrieves the search query from the URL, updates the search bar with the query, and displays the corresponding results by filtering the dataset.


Conclusion

By following these steps, you can easily add a search feature to your Wix Lightbox and display the results on another page. This setup enhances the navigation and usability of your website, providing visitors with a more intuitive way to find the information they need. With a few lines of code and some configuration, you can significantly improve the user experience on your Wix site. Happy coding!


📺WATCH FULL STEP-BY-STEP TUTORIAL HERE

Code




Leave a comment (0)

Thanks for leaving a comment🎉

ahmed

ahmed

May 19, 2024

wix form data

Hi i need your help also in wix form submission

the problem is that some fields are generated when $w.onReady(function () { like day & date and when i choose the student name i get the phone number from database .

and the form save only the field u fill it by ur self like input or dropdown

Reply

Walter Odibi

Walter Odibi

January 20, 2000

bromar

bromar

Sep 29, 2023

Love the tutorial!!!

You are truly great at creating these instructional videos!! Thank you! I am having trouble figuring out . . 'the triggered email' . . it is not being sent to the user submitting the form, the form and the email to the admin works great. . Could you point me to where this might have already been addressed? or any other help? On a second note. .the submit button success/failure message will go back to the default message once it's connected to the data set(I couldn't figure that out either. )

Reply

Walter Odibi

Walter Odibi

January 20, 2000

kaan

kaan

Jun 4, 2023

wishlist and rating system

hello sir I try today 2 hours but not working if you want I pay money can you do this 2 ( wishlist and rating star) system please I send to you invaid

Reply

Walter Odibi

Walter Odibi

January 20, 2000

Hi there, you can contact me here using the in-app chatbox

Waqas

Waqas

Apr 16, 2023

Triggered Email Backend

Hi mate please can you send email by backend

Reply

Walter Odibi

Walter Odibi

January 20, 2000

Hi Waqas, there isn't a backend code for this tutorial. The emails will be sent from the client-side.

Ghan

Ghan

Dec 29, 2022

Great Tutorial

Hi !

First of all, I want to thank you for your great tutorials, they helped us a lot with the coding.
But I still need your help, if you don't mind. I have based on Save Calculated Field using Wix Data Hooks Codes, to code my form . but the problem is I don't know why the code only reads the computation for "week2" computation and not the "weeks"

here is the code

I also did a separate column in the dataset where the chosen datas for both fields will be placed.

$w.onReady (() => {
$w("#Person").onChange(() => {
$w("#weeks").onChange(() => {
$w("#week2").onChange(() => {
let person = Number($w("#Person").value);
let weeks = Number($w("#weeks").value);
let week2 = Number($w("#week2").value);


$w("#totalLabel").show();

$w("#totalLabel").text = `"${String(weeks * Number(person))}페소"`; //DESIGN YOUR MESSAGE
$w("#totalLabel").text = `"${String(week2 * Number(person))}페소"`; //DESIGN YOUR MESSAGE

});
});
});

});

Reply

Walter Odibi

Walter Odibi

January 20, 2000

Hi there, thanks for your comment. I see why this is a problem. The onChange() function seems wrong in combination.

To combine onChangeFunctions use this method

$w("#Person, #weeks, #weeks2").onChange(() => {

//code here

});

Walter

Walter

Aug 8, 2022

More Details? Watch video

Hi, you can click here to watch the video https://www.youtube.com/watch?v=9bx7-nBeZ5c

Reply

Walter Odibi

Walter Odibi

January 20, 2000

Walter

Walter

Jul 11, 2022

For you

Reply

Walter Odibi

Walter Odibi

January 20, 2000

Walter Odibi

Walter Odibi

Apr 18, 2022

Awesome Feature

This tutorial shows you how to display views on your Wix repeater.

📺WATCH VIDEO HERE https://www.youtube.com/watch?v=Iz7SdaCSdXg

Reply

Walter Odibi

Walter Odibi

January 20, 2000

Walter Odibi

Walter Odibi

Apr 18, 2022

Amazing tutorial

This amazing tutorial will show you how to a comment section to your WIX dynamic page.

📺WATCH VIDEO HERE https://www.youtube.com/watch?v=f8-vJQFNZ_c

Reply

Walter Odibi

Walter Odibi

January 20, 2000

Walter Odibi

Walter Odibi

Apr 10, 2022

Great Feature🎉

This amazing tutorial will show you how to add a visitor view counter to your WIX dynamic page.

🚩MORE TUTORIALS https://www.wixgenius.com/wix-tutorials

Reply

Walter Odibi

Walter Odibi

January 20, 2000

RELATED TUTORIALS 🚀

bottom of page