Taxonomy loop with post loop inside (but pulling another taxonomy)?

Hi Zack,
So I think the problem here is that you’re using a single taxonomy parameter on your post loop, and you’re passing the taxonomy ID from a different taxonomy to your parameter, which wouldn’t match a reward term. I think something like this would solve your problem:

<Loop type=taxonomy_term taxonomy=location_state>
    <h2><Field title /></h2>
    <Loop type=store taxonomy=location_state terms="{Field id}" taxonomy_2=rewards taxonomy_compare_2=exists terms_2="">
        <a href="{Field url}"><Field title /></a>
    </Loop>
</Loop>

Post loops support up to 3 taxonomy comparisons, with the second and third requiring a _2 and _3 appended to each parameter.

Each taxonomy comparison is limited to a single taxonomy, and the term IDs or names passed to the terms parameter needs to match a term in the tax specified in the taxonomy parameter.