Homepage customization / including upcoming and past events

Home Forums Calendar Products Events Calendar PRO Homepage customization / including upcoming and past events

Viewing 4 posts - 31 through 34 (of 34 total)
  • Author
    Posts
  • #11193
    Jonah
    Participant

    Glad you’ve got it working Adam!

    Regards,
    Jonah

    #12852
    nakturnal
    Participant

    Would this work on the list.php file for line 26-29? I was looking to add more posts to my events page and not have that effect how many posts are on the home page. I’ll give it a shot and see if it works out, thanks!

    #12856
    Jonah
    Participant

    Hey naktural, try modifying the list query by putting this in your functions.php:


    function my_get_posts( $query ) {
    if(!tribe_is_day()) {
    $query->set( 'posts_per_page', 20 );
    }
    return $query;
    }
    add_filter( 'pre_get_posts', 'my_get_posts' );

    Change posts_per_page to however many posts you want to display…

    #974984
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 4 posts - 31 through 34 (of 34 total)
  • The topic ‘Homepage customization / including upcoming and past events’ is closed to new replies.