Hi,
I am having trouble figuring out how to use Twig to add two numbers together that are being pulled through from a custom field inside a looper.
So I have a Raw content element with this looper provider - {{dc:acf:post_field field="drivers"}}
, it is also set to consume all. I then have this as the content inside the Raw Content:
{% set points = acf.post_field({"field":"points"}) %}
{{ points }}
This returns 2 numbers which Is correct but I want to add them together somehow. Can you help?
Thanks