Tagged: ,

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #252727

    I’d like to add static text, a text input box, and a submit button to the right of the social icons in the menu and have them all work well with the theme. I’m developing a child theme, and I see where the ava_after_main_menu hooked functions are called in the main theme, but this is outside of the main navigational tags. Of course, I’d like the elements I add to be styled just like the other menu items.

    Any advice or recommendations?

    #253115

    Hi Jonathan!

    Thank you for using the theme.

    Instead of using the ava_after_main_menu hook use the avia_meta_header action hook. You can use this on functions.php

    add_action('avia_meta_header', 'avia_add_forms_on_header');
    
    function avia_add_forms_on_header() {
    	echo '<li class="avia-form-header">DO SOMETHING HERE</li>';
    }

    I added the list tag to align the new element correctly.

    Regards,
    Ismael

    #253140

    Hi Ismael,
    I tried your approach but I am not seeing any additional items in the menu at all – nor is the new HTML being output into the stream.
    Some conditional is preventing the calling block of code to be executed. Any ideas?
    FYI, what I’d like to end up with is something similar to the box in the upper right corner of my current site (https://web.archive.org/web/20140331064238/http://www.jpollackphoto.com/).
    Thanks for your help,
    Jonathan

    • This reply was modified 10 years ago by jpollackphoto. Reason: Traced execution
    #253220

    Something else I tried…
    I got the code to execute by adding it as an action to ava_after_main_menu, but that falls outside of the nav tag. If I open another nav tag and build a separate nav menu, it overlaps the right-aligned other nav tag present.
    Jonathan

    #253420

    I managed to get it working by defining the following in the child theme’s functions.php:

    function get_extra_menu_items()
    {
      $html = ...
      return $html;
    }
    
    if(!function_exists('avia_social_media_icons'))
    {
            function avia_social_media_icons($args = array(), $echo = true)
            {
                    $icons = new avia_social_media_icons($args);
                    $extrahtml = get_extra_menu_items();
                    if($echo)
                    {
                            echo $icons->html() . $extrahtml;
                    }
                    else
                    {
                            return $icons->html() . $extrahtml;
                    }
            }
    }

    It would be nice to see enfold gain a hook for this functionality, along with the ability for dynamic vertical sizing in an arbitrary DIV or SPAN rather than forcing the user to use an A tag where it doesn’t really belong.
    If you can suggest another or better way of doing what I’ve done, I’d love to hear it!
    Thanks,
    Jonathan

    #253422

    Hey!

    Thank you for the update.

    Strange because the code suggested above works on our end. Did you assign a top menu on your installation? I mean the additional menu on top of the main menu. If you don’t mind, please post the link of the test site here. We would like to inspect it.

    Regards,
    Ismael

    #253424

    I did not use a top menu at all for my installation, which is why none of the code you suggested was applicable and why some of it didn’t execute. The link to my test site will follow in a private reply below.

    #253425
    This reply has been marked as private.
Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Adding a form and text to the right of social icons’ is closed to new replies.