I have searched everywhere but I was not able to find a solution.
I want to show ACF Field from product to appear on the thank you page.
How to achieve that?
I have searched everywhere but I was not able to find a solution.
I want to show ACF Field from product to appear on the thank you page.
How to achieve that?
2
Answers
The most direct solution would be to add it to a template with the_field().
Simply create a page template for “Thank You” page and use
the_field()
method.Hope it helps.