Support

Account

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

  • Hi @mpayumo

    Could you please let me know the result of the following debug code?

    echo "<pre>";
        
    echo "======== Start debugging the events variable ========";
    print_r($events[$post_id]);
    echo "======== End debugging the events variable ========";
    
    echo "======== Start debugging the events date ========";
    print_r(get_sub_field('event_date'));
    echo "======== End debugging the events date ========";
    
    echo "</pre>";

    Also could you please let me know the result of this code:

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

    To avoid long reply, you can include only the first post or use https://gist.github.com/ instead.

    Thanks 🙂