Redirect for some products

Hello. Maybe you know how to redirect some of products to another page(in site) like I have product table and some of this table must redirected to main page. Im already spent 3 days for it((

Metal parts must redirect to main page, but all another must working with product page like it worked now

You can use and if/else statement and redirect based on product name or id. Something like this on your product page code:

$w.onReady(function () {
    $w('#productPage1').getProduct()
    .then( (product) => {
	 if(product._id === '12345' || product._id === '6789') {
	     wixLocation.to(`/page`);
	 }
});

You can get the product IDs from the Wix Stores Products database.

Hello.
thank you so much for your answer.

but it’s not working, some error in console

sorry, im stupid, already find error))

its redirected only after loading page. could it be faster, like onClick?