Jump to content

Скрыть кнопку купить в шаблоне


Recommended Posts

Здравствуйте! Ищу кто сможет подправить в шаблоне небольшой код. А именно, сделал отображения цены при 0 остатке по этой теме
 

Но скрыть кнопку "купить"  когда цена товара 0 не получается кодом

 

{if $v->stock}{if $product->variant->price >0}код {/if}
{/if}

 

 

Возможно кто то сможет на умеренную плату подправить в шаблоне это. 

Link to post
Share on other sites

Начиная с симплы версии 2.3.7 можно воспользоваться плагином для доступа к API симплы прямо в шаблоне, пример:


{if $product->variants}
{$product->variant->price|convert}
{else}
{api module=variants method=get_variants product_id=$product->id var=fv}
{$fv[0]->price|convert}
{/if}
Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...