How to display custom description using metaobjects in quick view

Hi i want to add custom data using meta tags in quick view popup. It seems something is missing I have added this code but it is not working

{{ product.metafields.custom.impact_created.value | strip_html | truncatewords: 15 }} {{- 'products.product.view_details' | t -}}

Hi,

Example of code


  

    ## {{ product.title }}
    
      {% if product.metafields.custom.impact_created %}
        {{ product.metafields.custom.impact_created.value | strip_html | truncatewords: 15 }}
      {% else %}
        

No impact created data available.

      {% endif %}
      
        {{ 'products.product.view_details' | t }}
      
    

  

Hi it is not working. https://new.wastewear.com/collections/all

Confirm that your metafield data is correctly entered in Shopify.

yes it is showing in product page. When we open a single product Under impact created accordion data is showing. I have added metafield as rich text

kindly check under namespace and key

custom.impact_created

Hi thanks for your help, I have added some code via online research and now it is working