Support

Account

Home Forums Front-end Issues ACF + Backstretch Help Reply To: ACF + Backstretch Help

  • ok, the above is actually working for posts and pages if i use the image field

    but not for taxonomies (I’ve added an image field to taxonomy terms, so I can have a nice hero for taxonomy archives)

    think i need to change this

    $image = array( ‘src’ => get_field(‘product_image’));
    wp_localize_script( ‘digital-backstretch-set’, ‘BackStretchImg’, $image );

    to work with this

    // vars
    $queried_object = get_queried_object();
    $taxonomy = $queried_object->taxonomy;
    $term_id = $queried_object->term_id;

    // load thumbnail for this taxonomy term (term object)
    $thumbnail = get_field(‘thumbnail’, $queried_object);

    // load thumbnail for this taxonomy term (term string)
    $thumbnail = get_field(‘thumbnail’, $taxonomy . ‘_’ . $term_id);

    but not sure how

    at the moment I’m getting the img showing in backstretch but no src…

    any help appreciated !