Scenario:
"I only want one category to display on the home page, not postings from all categories. I went into settings and changed the default category to what I want but this setting seems to make no difference."
Solution:
Just do a little editing of your Main Index skin part and use an if conditional statement.
Original forum thread:
http://forum.nucleuscms.org/viewtopic.php?t=7121
Method:
Navigate to your Skins admin area by click on it in the left menu in the Nucleus admin area:

Select the main index skin part of the skin you are using (skin name will be in bold):

In your Main Index skin, replace
<%blog(template,5)%>

with
<%if(category,categoryname)%> <%blog(template,5)%> <%else%> <%blog(template,5,category)%> <%endif%>
where "template" is the name of your template, "5" is the number of items you're displaying and "categoryname" is the name of the category you want displaying on your main page.
![]()
Total votes: 16 - Rating: 8.00