Hi, I am trying to get URL of image from term meta. It is Image Advanced field with a single image. So I believed that {{image_url}} reference in MBViews will get me URL, if I set such variable and store value from wp_get_attachment_image_src there, but it did not.
{% set image_url = mb.wp_get_attachment_image_src( image_advanced_collection,'', full) %}
{% for collection in collections %}
<div class="background-collection" style="background:url({{image_url}})">
How can I get URL from term meta in such MB View inside the "collections" FOR loop?