Website Feedback

Hello everybody. COVID-19 gave me some free time, so I have decided to revamp my online wine store from scratch using WIX. Appreciate if you have any feedback or comments, please let me know… www.khalafwines.com

Thank you :blush:

Awesome.! mobile site quite user friendly. Feel like drinking more wine now. :wink:

Really nicely designed

Really good design. How did you get a custom login lightbox form? Did you use corvid?

you can add this code to your lightbox code panel to do that using an onClick function

Login code:

import wixUsers from 'wix-users';
import wixLocation from 'wix-location';







//Add this code into an onClick function

 let email = $w("#email").value;
 let password = $w("#password").value;

 wixUsers.login(email, password)
   .then( () => {
     console.log("User is logged in");
     wixLocation.to("https://sewellstephens.com/dashboard");  //Change the URL ending to whatever page you want to send the user to after they log in.
   } )
    .catch( (err) => {
     console.log(err);
     $w("#errorMessage").expand();  
   } ); 

Thank you Liam. Yes, you can do the custom login through Corvid. I don’t know how to code, but it’s pretty simple. I followed this video tutorial on YouTube, found it helpful: Wix Member Login - How to customize member login on Wix using Wix Code - YouTube

@sewellstephens104 thanks for the tips. I got it working. Do you know how to make my lightbox menu responsive. So when i click a button on the page, the lightbox takes ages to load. Do you know a way to make it appear immediately. Iam using the lightbox as a menu.