Dear Yisrael,
Support says it’s because of this code. I have requested a redirect to a “thank you” page from the third party provider and they are running this code and they think it is because of this:
Can this be?
import wixData from ‘wix-data’ ;
import wixLocation from ‘wix-location’ ;
$w.onReady( function () {
let path = wixLocation.path;
let query = wixLocation.query;
let collectionName = ‘123FormBuilder_12345678’ ;
if ( “collection” in query) { collectionName = query[ ‘collection’ ]; }
if ( “data” in query) {
let obj = JSON.parse(atob(query[ ‘data’ ]));
console.log( ‘Sending 123FormBuilder submitted data to WixCode’ );
wixData.insert(collectionName, obj); }
else {
console.log( ‘No submission data received from 123FormBuilder’ ); } });
Thanks for your help
Best regadrs,
Yulia