Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support masoodak

    (@masoodak)

    Hi @pnkj,

    Thanks for reaching out!

    You can make use of tribe_related_posts_args filter hook to change number of related events fetched. For example, something like this should work,

    add_filter( 'tribe_related_posts_args', 'tribe_change_number_of_related_events' );
    function tribe_change_number_of_related_events( $args ) {
    $args['posts_per_page'] = 4; // Change this to whatever number you'd like.
    return $args;
    }

    Kindly note that you may need some CSS to modify the frontend layout to accommodate more than three events.

    Hope this helps.

    Kind regards,
    Masood

    Plugin Support Chika Ibeneme

    (@chikaibeneme)

    Hi Everyone!

    Thanks so much for your time here.

    We’ll be closing this post as there has been no activity! Please feel free to open a new thread if any other questions come up and we’d be happy to help. ??

    Thank you,
    Chika

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Related Events 5 in a row on single event page’ is closed to new replies.