Support

Account

Home Forums Front-end Issues After upgrade post aggregator not working Reply To: After upgrade post aggregator not working

  • Hi @mpayumo

    Yes, it seems that the content is returned correctly. Next, could you please debug all key variables like $events.

    Also, could you please check if the repeater returns correct data like this:

    echo "<pre>";
    while ( $lulus->have_posts() ) : $lulus->the_post();
    
        $dates = get_field('dates');
        print_r($dates);
    
    endwhile;
    echo "</pre>";

    If that doesn’t work, could you please try to set the post ID manually like this:

    $dates = get_field('dates', 99);

    Where ’99’ is the post ID.

    Thanks 🙂