нужна помощь, пожалуйста
Так что, в основном, когда вы добавляете товар в корзину, он автоматически перенаправляет на страницу карты, и дело в том, что товар добавляется дважды, в форме ввода для количества
любая помощь будет оценена
Это может быть полезно для вас. Пожалуйста, проверьте код ниже на странице product.liquid
<form action="/cart/add" method="post" enctype="multipart/form-data" class="product-form"> <select name="id" id="ProductSelect" class="product-single__variants"> {% for variant in product.variants %} {% if variant.available %} <option {% if variant == product.selected_or_first_available_variant %} selected="selected" {% endif %} data-sku="{{ variant.sku }}" value="{{ variant.id }}">{{ variant.title }} - {{ variant.price | money_with_currency }}</option> {% else %} <option disabled="disabled"> {{ variant.title }} - {{ 'products.product.sold_out' | t }} </option> {% endif %} {% endfor %} </select> {% if settings.product_quantity_enable %} <div class="product-single__quantity"> <label for="Quantity">{{ 'products.product.quantity' | t }}</label> <input type="number" id="Quantity" name="quantity" value="1" min="1"> </div> {% endif %} <div class="product-single__cart-submit-wrapper"> <button type="submit" name="add" id="AddToCart" class="btn product-single__cart-submit btn--secondary"> <span id="AddToCartText">{{ 'products.product.add_to_cart' | t }}</span> </button> </div> </form>