Удалить кнопку "Добавить в корзину" в Lightspeed
Я пытаюсь удалить "Добавить в корзину" для определенных категорий товаров, но хотел бы, чтобы товар и цена были видны. В настоящее время используется платформа Lightspeed eComm, и найти кусочки немного сложно. Вот что у меня есть для страницы product.rain:
{% if product.stock.track%} http://schema.org/InStockndom%% endif %}" /> {% endif %}
<form action="{{ ('cart/add/' ~ product.vid) | url }}" id=
"product_configure_form" method="post">
{% if product.options or product.variants or product.custom %}
<div class="product-option row">
<div class="col-md-12">
{{ product | html_product_configure | raw }}
</div>
</div>
{% else %}
<input type="hidden" name="bundle_id" id="product_configure_bundle_id" value="">
{% endif %}
<div class="product-price row">
<div class="price-wrap col-xs-5 col-md-5">
{% if product.price.price_old %}
<span class="old-price">{{ product.price.price_old | money }}{% if shop.settings.legal.mode == 'strict' %} {{ 'SRP' | t }}{% endif %}</span>
{% endif %}
<span class="price" style="line-height: 30px;">{{ product.price.price | money }}
{% if shop.settings.price_per_unit == 'enabled' and product.unit %}
<br /><span class="unitprice" style="font-size: 0.6em;">*
{{ 'Unit price' | t }}: {{ product.unit.price | money }} / {{ product.unit.unit }}
</span>
{% endif %}
{% if shop.settings.legal.mode == 'strict' %}
<br /><span style="font-size: 0.6em;">* {% if shop.b2b %}{{ 'Excl. VAT' | t }}{% else %}{{ 'Incl. VAT' | t }}{% endif %} {{ 'Excl. $1' | t('<a href="' ~ 'service/shipping-returns' | url ~ '">' ~ 'Shipping costs' | t ~ '</a>') | raw }}</span>
{% endif %}
</div>
<div class="cart col-xs-7 col-md-7">
<div class="cart">
{% if product.stock.available %}
<input type="text" name="quantity" value="{{ product.quantity }}" />
<div class="change">
<a href="javascript:;" onclick="updateQuantity('up');" class="up">+</a>
<a href="javascript:;" onclick="updateQuantity('down');" class="down">-</a>
</div>
<a href="javascript:;" onclick="$('#product_configure_form').submit();" class="btn glyphicon glyphicon-shopping-cart" title="{{ 'Add to cart' | t }}" {% if shop.language == 'de' %}style="padding: 0px 10px;"{% endif %}>
<span>{{ 'Add to cart' | t }}</span>
</a>
{% endif %}
</div>
</div>
</div>
Любая помощь будет принята с благодарностью! Если это выход из вопроса, дайте мне знать.