我目前正在为big卡特尔网站自定义主题'Sidecar',我试图添加一个下拉菜单,仅在固定边栏上填充艺术家链接。
我试过使用简单的代码来包围,但这似乎不起作用。它不会下拉,也不会显示任何东西,除了下面的图片。
有人能帮忙吗?
在我添加下拉菜单之前- https://db.tt/gYoAFdW3
然后应用下面的代码- https://db.tt/w3UFxzoA
{% if artists.active != blank %}
<section>
<h2 class="title">Artists</h2>
<select>
<ul>
{% for artist in artists.active %}
<li>
<a href="{{ artist.url }}" class="page {% if page.full_url contains artist.url %}current{% endif %}">
{{ artist.name }}
</a>
</li>
{% endfor %}
</ul>
</select>
</section>
{% endif %}
{% if artists.active != blank %}
<section>
<h2 class="title">Artists</h2>
<select onchange="location = this.options[this.selectedIndex].value;">
{% for artist in artists.active %}
<option value="{{ artist.url }}">{{ artist.name }}</option>
{% endfor %}
</select>
</section>
{% endif %}