CMS Development

DM2
Membro

Excluding multiple blog topics from a topic list

resolver

Hi

 

I am showing a list of topics but have 3 that I don't want to show (Novice, Intermediate and Advanced). I've tried this:

 

{% for topic in post.topic_list %}
 {% if topic.name != ['Novice', 'Intermediate', 'Advanced'] %}
  {{ topic.name }} 
 {% endif %}   
{% endfor %}

 

but that returns no topics.

 

Grateful for any help here.

0 Avaliação positiva
1 Solução aceita
piersg
Solução
Conselheiro(a) de destaque

Excluding multiple blog topics from a topic list

resolver

@DM2 it should work if you do this:

{% for topic in post.topic_list %}
 {% if topic.name is not in ['Novice', 'Intermediate', 'Advanced'] %}
  {{ topic.name }} 
 {% endif %}   
{% endfor %}

 

Exibir solução no post original

2 Respostas 2
DM2
Membro

Excluding multiple blog topics from a topic list

resolver

Brilliant, thanks so much.

0 Avaliação positiva
piersg
Solução
Conselheiro(a) de destaque

Excluding multiple blog topics from a topic list

resolver

@DM2 it should work if you do this:

{% for topic in post.topic_list %}
 {% if topic.name is not in ['Novice', 'Intermediate', 'Advanced'] %}
  {{ topic.name }} 
 {% endif %}   
{% endfor %}