Support

Account

Forum Replies Created

  • It’s ok.

    update to the latest version fixed it.

  • I change the specials field to a true/false field

    and added the meta_value as suggested above

    but still show no posts…

    🙁

  • Hi John, thanks for the quick reply

    It’s actually just a checkbox (check to enable specials)

    is there a meta_value when a checkbox is checked?

    otherwise I can change the field type.

  • 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 !

Viewing 4 posts - 1 through 4 (of 4 total)