Jump to content
Дизайн и модификация IPS Community IPBSkinsBETA
Search In
  • More options...
Find results that contain...
Find results in...
Sign in to follow this  
Zero108

COMMERCE 4.1.10 - как добавить переход между товарами?

Recommended Posts

Подскажите, как сделать переход между товарами категории на странице товара?

 

В Downloads это выглядит так:

 

691055fb465b.jpg

И реализовано в шаблоне view просмотра файла так:

 

	{{if $prev || $next}}
	<div class='ipsGrid ipsGrid_collapsePhone ipsPager ipsSpacer_top'>
		{{if $prev !== NULL}}
			<div class="ipsGrid_span6 ipsType_left ipsPager_prev">
				<a href="{$prev->url()}" title="{lang="prev_file"}" rel="prev">
					<span class="ipsPager_type">{lang="prev_file"}</span>
					<span class="ipsPager_title ipsType_light ipsType_break">{wordbreak="$prev->mapped('title')"}</span>
				</a>
			</div>
		{{else}}
			<div class='ipsGrid_span6'> </div>
		{{endif}}
		{{if $next !== NULL}}
			<div class="ipsGrid_span6 ipsType_right ipsPager_next">
				<a href="{$next->url()}" title="{lang="next_file"}" rel="next">
					<span class="ipsPager_type">{lang="next_file"}</span>
					<span class="ipsPager_title ipsType_light ipsType_break">{wordbreak="$next->mapped('title')"}</span>
				</a>
			</div>
		{{else}}
			<div class='ipsGrid_span6'> </div>
		{{endif}}
	</div>
	<hr class='ipsHr'>
{{endif}}

 

Как заставить работать аналогичный код в шаблоне package (просмотр товара в Commerce)?

Share this post


Link to post
Share on other sites

Для начала нужно смотреть если в коде предусмотрена реализация переходов между товарами.

Share this post


Link to post
Share on other sites

Не предусмотрена. Можно сделать код для перехода по следующему и предыдущему id товара в категории? Может быть не такой сложный, как дефолтный.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

  • Recently Browsing   0 members

    No registered users viewing this page.

×
×
  • Create New...