Как добавить плагин. Archived
Добрый день.
Приобрели плагин Выбор характеристик и опций в категориях.
Подскажите куда вставить вывод, нужен вывод размеров.
<form class="purchase addtocart" {if $p.sku_count > 1}data-url="{$p.frontend_url}{if strpos($p.frontend_url, '?')}&{else}?{/if}cart=1"{/if} method="post" action="{$wa->getUrl('shop/frontendCart/add')}">
<div class="price-wrapper">
{if $p.compare_price > 0}<span class="compare-at-price nowrap"> {shop_currency_html($p.compare_price)} </span>{/if}
<span class="price nowrap">{shop_currency_html($p.price)}</span>
</div>
{if empty($without_micro_markup)}
<meta itemprop="price" content="{$p.price}">
<meta itemprop="priceCurrency" content="{$wa->shop->primaryCurrency()}">
{/if}
<input type="hidden" name="product_id" value="{$p.id}">
<div class="submit-wrapper">
<input type="submit" class="second-type" value="{$add2cart_label}"><i class="adding2cart"></i>
</div>
<div class="addition-wrapper">
<a data-product="{$p.id}" href="#" class="addition-button compare-add{if in_array($p.id, $compare_p)} added{/if}" title="[`In comparison`]" rel="nofollow">
<i class="mdi-equalizer mdi-2x"></i>
</a>
<a data-product="{$p.id}" href="#" class="addition-button bookmark-add{if in_array($p.id, $bookmark_p)} added{/if}" title="[`In bookmarks`]" rel="nofollow">
<i class="mdi-star mdi-2x"></i>
</a>
</div>
<span class="added2cart" style="display: none;">{sprintf('[`%s is now <a href="%s"><strong>in your shopping cart</strong></a>`]', $p.name, $wa->getUrl('shop/frontend/cart'))}</span>
</form>
Спасибо.