I’m using an ACF Select. I’d like to be able to show different text based on the select option value that’s chosen.
So if A is chosen then display “ABC”
If B is chosen then display “123”
Is that possible?
I’m using an ACF Select. I’d like to be able to show different text based on the select option value that’s chosen.
So if A is chosen then display “ABC”
If B is chosen then display “123”
Is that possible?
Hey @tektonministries,
Thanks for reaching out!
Yes, it is possible and doable. You need to use element conditions, You can check this documentation as a reference:
I’ll give you an example:
I created an ACF called select_test with the value of ( a, b, c, d).
Then on my page, I assigned the value select to C.
Then in the builder, select an (element, section, column, row) then customize and then conditions.
In the condition, select the type as string then the dynamic content is {{dc:acf:post_field field="select_test"}}
is ‘c’.
It means that if the select option is equal to c, it will show my column.
Hope that helps.
Got it. Thanks.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.