Jump to content

Recommended Posts

Всем привет, код приведённый ниже выводит товары на странице товара принадлежащие этому же бренду, а как вывести товары принадлежащие этой же категории?

                {get_products var=cat_brand_products brand_id=$product->brand_id category_id=$category->id sort='rand' in_stock=1 limit=10}
				{if $cat_brand_products}
					<h2>Похожие товары по бренду</h2>
					<div class="itemslist1 row owl-carousel12 owl-theme">

						{foreach $cat_brand_products as $product}
							<div class="item_col items myitems">
								{include file="_myproduct.tpl"}
							</div>
						{/foreach}
					</div>
				{/if}

 

Edited by Alex000
Link to post
Share on other sites
5 часов назад, Alex000 сказал:

Всем привет, код приведённый ниже выводит товары на странице товара принадлежащие этому же бренду, а как вывести товары принадлежащие этой же категории?





                {get_products var=cat_brand_products brand_id=$product->brand_id category_id=$category->id sort='rand' in_stock=1 limit=10}
				{if $cat_brand_products}
					<h2>Похожие товары по бренду</h2>
					<div class="itemslist1 row owl-carousel12 owl-theme">

						{foreach $cat_brand_products as $product}
							<div class="item_col items myitems">
								{include file="_myproduct.tpl"}
							</div>
						{/foreach}
					</div>
				{/if}

 

Ваш код не полный, видимо прописан еще «универсальный виджет».

Нужны еще файлы view/View.php и api/Products.php

Edited by alexivchenko
Link to post
Share on other sites

Приведенный код выводит товары, принадлежащие этому же бренду И этой же категории, о чем говорят параметры вызова плагина

{get_products ... brand_id=... category_id=...}

А чтобы вывести товары принадлежащие этой же категории, надо всего лишь убрать параметр brand_id.

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...