Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter madelynn

    (@madelynn)

    The link is now https://www.browndogcreative.com as we’ve had to make the design live. Please try to respond as soon as possible!! I appreciate it.

    Plugin Author Robert O’Rourke

    (@sanchothefat)

    So sorry for the delay madelynn :/

    Can you confirm that your theme has the wp_footer() function in the footer.php?

    Thread Starter madelynn

    (@madelynn)

    It does not use that function. Do I need to add it somehow?

    Plugin Author Robert O’Rourke

    (@sanchothefat)

    All WordPress themes should have a call to wp_head() in between the <head></head> tags and a call to wp_footer() just before the closing </body> tag otherwise plugins won’t be able to work.

    Edit your footer.php file – just above the closing </body> tag add:

    <?php wp_footer(); ?>

    That’s it!

    Plugin Author Robert O’Rourke

    (@sanchothefat)

    Oh and one more thing – if the theme you purchased didn’t have that line of code in it you might want to notify the author as it’s a pretty serious oversight.

    Thread Starter madelynn

    (@madelynn)

    Ah, that worked perfectly. And yes, we did purchase the theme, so I will be notifying the theme author!

    Thank you again!

    Hello, Sancho. I’m having the same problem as madelynn, but I have the wp_footer function on my footer.
    What happens is that the menu dropdown is showing correctly, but if we click on any link, goes to a “page not found”.
    Just for the record, I’m using it with the following code:

    <?php if (function_exists( 'dropdown_menu' ) ) : ?>
        <?php dropdown_menu( array('dropdown_title' => '-- Menu Sardinha17 --', 'indent_string' => '- ', 'indent_after' => '','container' => 'div', 'container_class' => 'menu-responsivo', 'theme_location'=>'menu_superior') ); ?>
    <?php endif; ?>

    with “menu-superior” declared in my functions.php as the code bellow:

    add_theme_support('menus');
    	register_nav_menus(array('menu_superior' =>'Menu Superior'));

    Any ideas on what could be happening?
    Thanks in advance,
    Rogério Mello.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘[Plugin: Dropdown Menus] Dropdown menu doesn't go to new page with option is selected’ is closed to new replies.