How are we looking on this feature development?
AbanteCart v1.4.4 is released.

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: Marvin C. on August 10, 2025, 11:57:43 PMWhen 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.
Quoteplease check this line
https://github.com/abantecart/abantecart-src/blob/master/public_html/extensions/novator/storefront/view/novator/template/pages/product/product.tpl#L293 and review product details in admin
if($product_info['free_shipping'] && $product_info['shipping_price'] <= 0) { ?>if($product_info['free_shipping'] || ($product_info['shipping_price'] <= 0 && $product_info['ship_individually'])) { ?> so that either situation will activate the free shipping label.