Hi,
I’m using the Advanced Linkin ny ACF fields but don’t figure out how to display the content of it in a dynamic template? The field name of the Advanced link is in my case “location_website”, but it doesn’t show up in the list of ACF fields in Bricks…
So it seems I’m doing something wrong here…
Hi,
Did uou figured this out ?
Just taked a look at the code, but we can’t extend ACFE support using hooks or filters.
I never used it on my workflows can you guys show some video/screenshots how the setup is made ?
maybe I can help
Looking at the code, provider-acf.php could be improved to make it more open to ACF ecosystem. My suggestion is to add a filter in the private function get_fields_by_context(), right before returning the accepted fields. This way, we could add specific ACF field support, like ACF Extended ones or others.
Just tested simply adding this to line 920 (bricks 1.12) and I can get my new field I can use with :array_value powerfull trick :
'acfe_advanced_link' => [ self::CONTEXT_TEXT, self::CONTEXT_LINK ],
Bye the way, since ACFE is already doing the job to make array with URL key, I think the CONTEXT_LINK is useless in this case.