Do you like AbanteCart? Please rate AbanteCart or share your experience with other eCommerce entrepreneurs. Go to Softaculous rating page to add your rating or write a review

When a user submits a form, how can we automatically obtain the url of the page?

Started by Marvin C., August 10, 2025, 11:57:43 PM

Previous topic - Next topic

Marvin C.

When a user submits a form, how can we automatically obtain the url of the page?The form is on the product page.I want to automatically obtain the link or product name of the product when the user submits the form.

Basara

Hello.
If you've added a custom form via the Form Manager, you can do this by adding a hidden input field to your form, then filling it with JavaScript when the page loads.

yonghan79


Basara

Hello.
Put the JavaScript in an HTML block and assign that block to the page layout where the form is shown.

There are other ways to add JavaScript too, such as directly in the template files, but using an HTML block is usually the easier method for this kind of task.

marktuan

If the form is embedded directly on the product page, you can usually capture the current product URL or product ID when the form is submitted rather than asking the user to enter it.

For example, on the client side, `window.location.href` will give you the current page URL. If you need the product name, it would be better to pass the product ID/name from the product page into a hidden form field and submit it along with the other form data.

In AbanteCart, I'd recommend using the product ID as the reliable value and looking up the product name afterward. URLs and product names can change, while the product ID should remain stable. If you're handling the submission in a controller, you can then use that ID to retrieve the corresponding product information.

Forum Rules Code of conduct
AbanteCart.com 2010 -