Hi Tom, in the thread linked below you explained how to insert html and other stuff into the main navigation.
https://generatepress.com/forums/topic/place-html-or-widgets-inside-sticky-menu-nav-bar/
However, Now I would like to do the same with the secondary navigation. How would I modify the code to achieve that?
I took a wild shot and tried this:
add_action( 'generate_inside_navigation','generate_insert_into_secondary_navigation' );
function generate_insert_into_secondary_navigation()
{ ?>
My html here
<?php }
That, didn´t work though…