Tagged: 

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

    Hi,
    On this topic https://kriesi.at/support/topic/insert-image-in-header-instead-of-secondary-menu/ Gunter gives the solution to use do_action(‘ava_after_main_menu’); but I am not shure how to use it. Do I need to put it in Header.php? Where do I put the additional html that I want to add?
    Can you give an example?

    Thanks very much! Ariane

    #353059

    Hey ariane1001!

    Thank you for using our theme.

    In functions.php you put the following code:

    
    do_action('ava_after_main_menu', 'my_personal_code', 10);
    
    function my_personal_code()
    {
       echo '.... write the code you want to output ....';
    }
    
    

    Best regards,
    Günter

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