Removing Pagination from Main page classipress 3.1
Hi, I need to remove the pagination from the main page only but not from the inside pages for each category. I searched and found an similar query where jomarkosabel gave a tip as below to change the code in theme-actions.php by adding is_home()
I did exactly that but I see no change
Is there something that I am doing wrong or missing ??? can you please help me out on this... its been a few night outs already for this.
This is what I did right now...
Look for the code below in the theme-actions.php line 80'
Code:
if ( is_page() || is_singular( 'post' ) ) return;
Try adding the is_home parameter to make it look like below;
Code:
if ( is_home() || is_page() || is_singular( 'post' ) ) return;
http://forums.appthemes.com/removing...s-3-1-a-21719/