Support

Account

Home Forums Front-end Issues ACF with enfold theme Reply To: ACF with enfold theme

  • Hi @dannhanks

    Great! With that information, I think we can do some further tests.

    The “Cannot redeclare avf_post_slider_entry_excerpt_func()” was showing up because you have another function with the same name. Could you please check it out? Maybe you can use different function name?

    Also, could you please try the following code?

    echo "<pre>";
    
    echo "=== post id ===\n";
    var_dump($entry->ID);
    
    echo "=== repetaer with id ===\n";
    echo get_field('excerpt', $entry->ID);
    
    echo "</pre>";

    Thanks 🙂