When buying a product in wix App, it redirects to Space for Wixs - how do I stop this so the wix app just gets used

I have created a web site and App in the Wix Studio. As part of this I offer products via a shop.

When I access the domain name via mobile (Safari in my case), if I go to buy a product from the mobile version it redirects to Spaces for Wix, which I don’t want - I want to remain in the Wix version I have created. On the laptop or tablet, it stays in the correct version, its just mobile.

Wix Studio Editor

As per question - I just want everything to stay within the Wix App created in Wix Studio, and not redirect to Spaces for Wix.

Online help

To stop your mobile site from redirecting to Spaces for Wix, here are some quick steps:

  1. Check Your Wix Studio Settings: Look for any mobile settings that might be causing the redirect to Spaces for Wix. There might be an option to disable this behavior.
  2. Use Custom Mobile Navigation: Update your mobile menu or links so users are always directed to your own pages, not Spaces.
  3. Add a Small Code: You can use a little Velo code to automatically send users back to your site if they get redirected to Spaces:

javascript

Copy code

import wixLocation from 'wix-location';
if (wixLocation.url.includes('spaces')) {
    wixLocation.to('https://your-site-url.com/shop');
}
  1. Reach Out to Wix Support: They can help you disable the redirect to Spaces for Wix if needed.
  2. Promote Your Mobile App: If you’ve made a custom mobile app, encourage users to use that instead of the mobile website for a more seamless experience.

Let me know if you need help with any of these steps!