Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1356591

    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

    #1356655

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.