You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The list module for product variants allows adding products to the cart directly without visiting the reader page.
Technically, it does this by placing hidden form fields into the markup which contain all relevant product identifiers.
I've found out that one of this fields is not generated correctly by the template iso_list_variants.html5.
As you can see, the value in the latter case is „liter_11“, whereas it it „11 Liter“ in the list template. The wrong value confuses the module and one cannot place such products into the cart directly. It is required to first navigate to the reader page and then order the product.
In my eyes, the line of code should not output the display value of the variant attribute, but rather the real value.
The text was updated successfully, but these errors were encountered:
The list module for product variants allows adding products to the cart directly without visiting the reader page.
Technically, it does this by placing hidden form fields into the markup which contain all relevant product identifiers.
I've found out that one of this fields is not generated correctly by the template
iso_list_variants.html5
.The regular form on the reader page has the following options for the variant attribute:
As you can see, the value in the latter case is „liter_11“, whereas it it „11 Liter“ in the list template. The wrong value confuses the module and one cannot place such products into the cart directly. It is required to first navigate to the reader page and then order the product.
In my eyes, the line of code should not output the display value of the variant attribute, but rather the real value.
The text was updated successfully, but these errors were encountered: