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.

  1. Edit the file:

    /cp/customer/development/views/pages/home.php
  2. Edit 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"/>
  3. 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"/>