Hello, we have a page with posts loop made in avia builder.
We need to show some ACFields under the Post Title. What is the file I need to edit to achieve this? Thanks
Hi marxsvjetlana64,
You can use this hook ava_after_main_title and put it in functions.php of your child theme:
function acf_after_main_title() {
// do something
}
add_action('ava_after_main_title', 'acf_after_main_title', 99);
Then use WordPress conditional tags to control where it appears.
Hope this helps.
Best regards,
Nikko