Pre-populate wix form with href data

Question:
we have a site page which has a form with fields name, email & number. We want to pass this information from another site as the customer is already logged in (app) and dont want them to have to give this information again (as they are logged into the app). But we use the form for feedback so will populate these fields and let them manually enter the feedback field then click submit.

We’ve tried everything but looks like server-side is not running (being blocked) and allowing us to populate these fields.

To test, we tried just updating a text94 element:

import wixLocation from ‘wix-location’;

$w.onReady(function () {
console.log(wixLocation.query); // Debugging: Log the query parameters
$w(“#text94”).value = wixLocation.query[“hello”];
});

The passed Url is https://WIX-SITE/feedback?hello=HELLO

Product:
we currently still on Wix Editor

What are you trying to achieve:
We’re trying to populate the wix form but initially just testing updating text94 to prove href works.

What have you already tried:
We’ve tried countless query options, wrapping the query, console debugging, nothing works. tried in different browsers, disabled blockers, tried in private/incognito mode

Additional information:
that’s all!

Your description is very minimalistic!

import wixLocation from 'wix-location';

$w.onReady(function () {
    console.log(wixLocation.query); // Debugging: Log the query parameters

    // Populate form fields
    if (wixLocation.query["name"]) {
        $w("#nameField").value = wixLocation.query["name"];
    }
    if (wixLocation.query["email"]) {
        $w("#emailField").value = wixLocation.query["email"];
    }
    if (wixLocation.query["number"]) {
        $w("#numberField").value = wixLocation.query["number"];
    }

    // Debugging: Log values being populated
    console.log("Name: ", wixLocation.query["name"]);
    console.log("Email: ", wixLocation.query["email"]);
    console.log("Number: ", wixLocation.query["number"]);
});