Hello!
I'm wondering what's the code for parent category? I figured out for subcategories it is category_id but I need the parent category code.
I'm gonna use it in row.html to display a little icon next to each link. The icon is related to the top category. At the moment I have to add the code to EACH subcategory to make the icon display. It would be easier if I could add it only to the parent category, since then, it would obviously display for all categories.
I'm using
I tried this, but didn't work:Code:<%if $category_id =='28'%> <%elseif $category_id =='2'%> <%elseif $category_id =='3'%> <%elseif $category_id =='4'%> <%elseif $category_id =='5'%> <%elseif $category_id =='6'%> <%/if%>
Code:<%if $parent_category_id =='28'%> <%/if%>


