Last active
August 23, 2021 09:54
-
-
Save Sentinel-7/361f61b9bd18a15f039e6ea46df4dd70 to your computer and use it in GitHub Desktop.
Выводим по 2 товара minishop2 в слайдере
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="mt-product1 mt-paddingbottom20 ms2_product"> | |
<form method="post" class="ms2_form"> | |
<input type="hidden" name="id" value="{$id}"> | |
<input type="hidden" name="count" value="1"> | |
<input type="hidden" name="options" value="[]"> | |
<div class="box"> | |
<div class="b1"> | |
<div class="b2"> | |
<a href="{$id | url}"> | |
{if $thumb?} | |
<img src="{$thumb}" alt="{$pagetitle}" title="{$pagetitle}"> | |
{else} | |
<img src="{'assets_url' | option}components/minishop2/img/web/ms2_medium.png" | |
srcset="{'assets_url' | option}components/minishop2/img/web/[email protected] 2x" | |
alt="{$pagetitle}" title="{$pagetitle}"/> | |
{/if} | |
</a> | |
{if $new?} | |
<span class="caption"> | |
<span class="new">{'ms2_frontend_new' | lexicon}</span> | |
</span> | |
{/if} | |
{if $popular?} | |
<span class="caption"> | |
<span class="best-price">{'ms2_frontend_popular' | lexicon}</span> | |
</span> | |
{/if} | |
{if $favorite?} | |
<span class="caption"> | |
<span class="new">{'ms2_frontend_favorite' | lexicon}</span> | |
</span> | |
{/if} | |
<ul class="links"> | |
<li> | |
<button type="submit" name="ms2_action" value="cart/add"> | |
<i class="icon-handbag"></i><span> {'ms2_frontend_add_to_cart' | lexicon}</span> | |
</button> | |
</li> | |
<li> | |
<a class="quickview" | |
data-click | |
data-data-id="{$id}" | |
data-data-action="chunk" | |
data-data-element="tpl.msProducts.quick" | |
data-data-topics='["minishop2:product"]' | |
data-dialog-title="" | |
data-dialog-size="size-wide" | |
><i class="icomoon icon-eye"></i> | |
</a> | |
</li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
<div class="txt"> | |
<strong class="title"><a href="{$id | url}">{$pagetitle}</a></strong> | |
<span class="price"><span>{$price}</span> {'ms2_frontend_currency' | lexicon}</span> | |
</div> | |
</form> | |
</div> | |
{if ($idx+1) % 2 == 1} | |
</div> <div class="slide"> | |
{/if} | |
================================================= | |
Так же прописываем 'tplLast' => '@FILE elements/chunks/productTabsLast.tpl', | |
в вызове без нижнего условия |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment