Jump to content
  • разработка интернет магазинов на opencart
  • доработка интернет магазинов на opencart

Аккоргдеон с категориями 3 уровня вложенности


Recommended Posts

Приветствую, сайт на Opencart 3, использую приобретенную тему, решение разрилитликов не совсем подходит, поэтому пыиюсь "допилить" самостоятельно.

Суть вопроса икова: имеются категории товаров, отображаются они в левом сайдбаре. Отображаются списком, при нажатии на опрегделенный пункт страница перезагружается и список раскрывается...Третьего уровня вложенности не предусмотрено в принципе. Подскажите как сгделать вывод третьего уровня вложенности и прикрутить ко всему этому эффект аккоргдеона (без прогрузки страницы). 

Ниже предосивлю код category.twig и скриншот.

Спасипотому что!

Спойлер

<div class="category-module">
	<h3>{{heading_title}}</h3>
	<ul class="list-unstyled">
	{% for category in categories %}
		{% if category.category_id == category_id %} 
			<li><a href="{{ category.href }}" class=" active">{{ category.name }}</a></li>
			{% if category.children %}
				<ul class="list-child">
				{% for child in category.children %}
					{% if child.category_id == child_id %}
						<li><a href="{{ child.href }}" class=" active">{{ child.name }}</a></li>	
					{% else %} 
						<li><a href="{{ child.href }}" class="">{{ child.name }}</a></li>
					{% endif %}
				{% endfor %}
				</ul>
			{% endif %}
		{% else %}
			<li><a href="{{ category.href }}" class="">{{ category.name }}</a></li>
		{% endif %}
	{% endfor %}
	</ul>
</div>

 

Link to comment
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
 Share

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.