Hey @hjaffer,
Yes, that is the ACF field for your products. You are trying to display recommended product items with the same ACF field like when a product is tagged as 'BMI`?
If that is the case, then you will have to use the Looper Provider Query String and then use the {{dc:acf:post_field field="product_recommendation"}}
dynamic content as the custom meta query for the products.
Example query argument:
$args = array(
'post_type' => 'product',
'posts_per_page' => 4,
'offset' => 0,
'ignore_sticky_posts' => true,
'post__not_in' => array( '{{dc:post:id}}' )
'meta_query' => array(
'meta_key' => 'product_recommendation',
'meta_value' => '{{dc:acf:post_field field="product_recommendation"}}',
'meta_compare' => 'IN',
),
);
The above is NOT a query string. Kindly check out this old thread for more details on how you can create the query string:
Best Regards.