Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
504 views
in Q2A Core by
I want Categories list to be displayed only on homepage. Not on every pages. How can i do that?
Q2A version: 1.5.2

1 Answer

0 votes
by

You can do this in a custom theme via CSS. Each page type has a different class in the <BODY> element such as qa-template-qa. So you can use a CSS rule like:

.qa-template-qa .qa-nav-cat {display:none;} 

...