Filter Data

CATEGORY

Start version 3.2 you can filter category by id. You only need to listed ID the category you don't want to display. you can edit at file res/values/array.xml

you can see category ID from this url http://your-web.com/?json=get_category_index .in example you want to hide category with ID 10 and 16

<integer-array name="category_id_filter">
    <item>10</item>
    <item>16</item>
</integer-array>

PAGE

Start version 3.4 you can filter page by id. You only need to listed ID the page you don't want to display. you can edit at file res/values/array.xml

you can see page ID from this url http://your-web.com/?json=get_page_index .in example you want to hide page with ID 5 and 7

<integer-array name="page_id_filter">
    <item>5</item>
    <item>7</item>
</integer-array>