Hi,
The articles object allows you to access a collection of article objects... I added my custom column name = class
I am able to get the attributes content, name, title, rating, etc.... How I can get my custom colum class or where do I need to add my colum so I can access it ?
<a class=title href={{ article.class | escape }}>{{ article.title | escape }}
I am using the sample below... but pretty much unable to get the value of my new column.
{{ article.description | escape }}{% assign count = count | default: 3 %}
{% assign languagecode = website.selected_language.code %}
{% assign popular_articles = knowledge.articles | popular: count,languagecode %}
{% if popular_articles %}
Thank you,
Bill