Set the Article Display on the Home Page
Users see most popular answers and most recent answers in a table view by default. You change the home page so that users can see articles in a list view. You implement list view using the view type parameter.
Edit the file:
/cp/customer/development/views/pages/home.phpEdit the most popular answers code by changing this line:
<rn:widget path="okcs/AnswerList" type="popular" target="_self"/>
to:
<rn:widget path="okcs/AnswerList" type="popular" target="_self" view_type="list"/>
Edit the most recent answers code by changing this line:
<rn:widget path="okcs/AnswerList" type="recent" target="_self"/>
to:
<rn:widget path="okcs/AnswerList" type="recent" target="_self" view_type="list"/>