1

There are 3 categories in my Neto store:

Category 1 Category 2 Category 3 I want to display ONLY one category i.e Category 2(Specific category) on the Homepage.

Anyone Know How can i achieve this. Thanks in advance

Enigmativity
  • 113,464
  • 11
  • 89
  • 172
rahul
  • 11
  • 2

1 Answers1

0

use this code and apply according to you choice

[%thumb_list type:'products' filter_category:'' limit:'10'%]
    [%param template%]
        [%if [@name@] eq 'Shirts'%]
            shirt_template
        [%else%]
            default`enter code here`
        [%/if%]
    [%/param%]
Enigmativity
  • 113,464
  • 11
  • 89
  • 172
  • I'm using this code below to pull through categories but can't figure out how to only show my 3 parent categories. It seems to be pulling through all of them. `[%thumb_list type:'content' content_type:'category' template:'category' limit:'4' sortby:'sortorder'%] [%param template%] [%if [@name@] eq 'Hytea', 'ToaTea', 'Specials'%] shirt_template [%else%] default`enter code here` [%/if%] [%/param%]` – Brendan Mar 09 '17 at 10:36