• Resolved vsq1007

    (@vsq1007)


    I am using a theme that doesn’t support menus and would like to know how to make this plugin work in this situation.

    I’ve also tried various fixes I found online to make the theme support menus but none seem to work

    Thanks for any help/guidance

    https://wordpress.org/plugins/responsive-menu/

Viewing 1 replies (of 1 total)
  • Plugin Contributor responsivemenu

    (@responsivemenu)

    Hi there,

    Unfortunately the plugin works based on WordPress inbuilt menus, doesn’t adding this to your functions.php file work at all?

    function register_my_menu() {
      register_nav_menu('header-menu',__( 'Header Menu' ));
    }
    add_action( 'init', 'register_my_menu' );

    All the best

Viewing 1 replies (of 1 total)

The topic ‘Make it work on theme that doesn't natively support menus.’ is closed to new replies.