Hello
I have custom code on my registration form page and everything works fine when using desktops or android devices but when using safari it no longer works.
I have the code below for a redirect to a payment page once they click submit,
when using android or desktops when the user clicks submit, they are redirected, an email is sent and the data is inserted into my database, when using safari the email does not send and the data does not insert, but the redirect does work. I have limited it down to just the wixlocation.to code because when I remove that section the data inserts and the email sends. can someone please help.
HERE IS MY CODE, EVEN when I limit it down to just 1 wixlocation.to it still doesnt work on safari. I tried just doing a simple code that brings user to google on button1 click and same issue, email doesnt send and data does not get inserted.
export function button1_click(event, $w) //1 on 1 //1 on 1 1 athlete { if ( $w(’ #dropdown7 ‘).value === ‘1-on-1 Training’ && $w(’ #dropdown3 ‘).value === ‘1’ && $w(’ #dropdown8 ‘).value === ‘12 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/1on11mo1athlete "); } else if ($w(’ #dropdown7 ‘).value === ‘1-on-1 Training’ && $w(’ #dropdown3 ‘).value === ‘1’ && $w(’ #dropdown8 ‘).value === ‘3 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/1on13mo1athletes "); } else if ( $w(’ #dropdown7 ‘).value === ‘1-on-1 Training’ && $w(’ #dropdown3 ‘).value === ‘1’ && $w(’ #dropdown8 ‘).value === ‘6 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/1on16mo1athlete "); } //small Group //Small Group 1 athlete else if ($w(’ #dropdown3 ‘).value === ‘1’ && $w(’ #dropdown7 ‘).value === ‘Small Group Training’ && $w(’ #dropdown8 ‘).value === ‘12 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/smallgroup1mo1athlete "); } else if ($w(’ #dropdown3 ‘).value === ‘1’ && $w(’ #dropdown7 ‘).value === ‘Small Group Training’ && $w(’ #dropdown8 ‘).value === ‘3 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/smallgroup3mo1athlete "); } else if ($w(’ #dropdown3 ‘).value === ‘1’ && $w(’ #dropdown7 ‘).value === ‘Small Group Training’ && $w(’ #dropdown8 ‘).value === ‘6 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/smallgroup6mo1athlete "); } //Small Group 2 athletes else if ($w(’ #dropdown3 ‘).value === ‘2’ && $w(’ #dropdown7 ‘).value === ‘Small Group Training’ && $w(’ #dropdown8 ‘).value === ‘12 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/smallgroup1mo2athletes "); } else if ($w(’ #dropdown3 ‘).value === ‘2’ && $w(’ #dropdown7 ‘).value === ‘Small Group Training’ && $w(’ #dropdown8 ‘).value === ‘3 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/smallgroup3mo2athletes "); } else if ($w(’ #dropdown3 ‘).value === ‘2’ && $w(’ #dropdown7 ‘).value === ‘Small Group Training’ && $w(’ #dropdown8 ‘).value === ‘6 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/smallgroup6mo2athletes "); } //Small Group 3 athlete else if ($w(’ #dropdown3 ‘).value === ‘3’ && $w(’ #dropdown7 ‘).value === ‘Small Group Training’ && $w(’ #dropdown8 ‘).value === ‘12 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/smallgroup1mo3athletes "); } else if ($w(’ #dropdown3 ‘).value === ‘3’ && $w(’ #dropdown7 ‘).value === ‘Small Group Training’ && $w(’ #dropdown8 ‘).value === ‘3 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/smallgroup3mo3athletes "); } else if ($w(’ #dropdown3 ‘).value === ‘3’ && $w(’ #dropdown7 ‘).value === ‘Small Group Training’ && $w(’ #dropdown8 ‘).value === ‘6 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/smallgroup6mo3athletes "); } //Team Training //Team 1 athlete else if ($w(’ #dropdown3 ‘).value === ‘1’ && $w(’ #dropdown7 ‘).value === ‘Team Training’ && $w(’ #dropdown8 ‘).value === ‘12 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/teamtrainig1mo1athlete "); } else if ($w(’ #dropdown3 ‘).value === ‘1’ && $w(’ #dropdown7 ‘).value === ‘Team Training’ && $w(’ #dropdown8 ‘).value === ‘3 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/teamtraining3mo1athlete "); } else if ($w(’ #dropdown3 ‘).value === ‘1’ && $w(’ #dropdown7 ‘).value === ‘Team Training’ && $w(’ #dropdown8 ‘).value === ‘6 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/teamtraining6mo1athlete "); } //Team Training 2 athletes else if ($w(’ #dropdown3 ‘).value === ‘2’ && $w(’ #dropdown7 ‘).value === ‘Team Training’ && $w(’ #dropdown8 ‘).value === ‘12 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/teamtraining1mo2athletes "); } else if ($w(’ #dropdown3 ‘).value === ‘2’ && $w(’ #dropdown7 ‘).value === ‘Team Training’ && $w(’ #dropdown8 ‘).value === ‘3 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/teamtraining3mo2athletes "); } else if ($w(’ #dropdown3 ‘).value === ‘2’ && $w(’ #dropdown7 ‘).value === ‘Team Training’ && $w(’ #dropdown8 ‘).value === ‘6 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/teamtraining6mo2athletes "); } //Team Training 3 athlete else if ($w(’ #dropdown3 ‘).value === ‘3’ && $w(’ #dropdown7 ‘).value === ‘Team Training’ && $w(’ #dropdown8 ‘).value === ‘12 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/teamtraining1mo3athletes "); } else if ($w(’ #dropdown3 ‘).value === ‘3’ && $w(’ #dropdown7 ‘).value === ‘Team Training’ && $w(’ #dropdown8 ‘).value === ‘3 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/teamtraining3mo3athletes "); } else if ($w(’ #dropdown3 ‘).value === ‘3’ && $w(’ #dropdown7 ‘).value === ‘Team Training’ && $w(’ #dropdown8 ').value === ‘6 Month Commitment’) { wixLocation.to (" https://www.gamechangerzu.com/teamtraining6mo3athletes “); } else wixLocation.to (” https://www.gamechangerzu.com "); }