Comments 2Sanjiv started the conversationOctober 2, 2016 at 11:28pmHello,Please let me know how do I display the Advanced Custom Field Titles and the values on Frontend that I have already created at while creating product at the backend.Thanks and Regards[deleted] repliedOctober 4, 2016 at 11:29amHi Sanjiv,Can you please be more specific about this?If you want to display custom fields in frontend, you have to add the code for that, so here you have directions:https://www.advancedcustomfields.com/resources/displaying-custom-field-values-in-your-theme/For example to fetch a field content this is sample way: <span>My field:</span> <strong><?php the_field( 'my-custom-field' ); ?></strong> Sign in to reply ...
Hello,
Please let me know how do I display the Advanced Custom Field Titles and the values on Frontend that I have already created at while creating product at the backend.
Thanks and Regards
Hi Sanjiv,
Can you please be more specific about this?
If you want to display custom fields in frontend, you have to add the code for that, so here you have directions:
https://www.advancedcustomfields.com/resources/displaying-custom-field-values-in-your-theme/
For example to fetch a field content this is sample way: