Viewing 2 replies - 1 through 2 (of 2 total)
  • https://www.dropbox.com/sh/gjuhn55hyznsmmr/AAD0DnUKFQsRu2i4xg2Z6mJNa?dl=0

    inner-page-menus-ipm_23jw.zip

    A simple plugin that will take one of your menus and create a unordered list as a drop down roughly styled like your image.

    use it like these examples:

     echo do_shortcode('[ipm_23jw id_slug="account-menu"]');
     [ipm_23jw id_slug="2245"]

    You can create a new menu, call it whatever fits your needs and add the post/pages/etc… to the menu. Then in the short code, add the slug or ID of the menu you want to display.

    There are some screenshots in the zip file.

    It’s a list but could be easily be converted to a select box with a few modifications. And, it’s rough and probably won’t be 100% what you want out of the box but it’s a simple example.

    When the user hovers over the menu, you may use CSS styling to show and hide the drop-down list. A smart solution is to build a div that contains the menu and the drop-down.

    <div class="dropdown">
      <button>Profile</button>
      <div class="dropdown-options">
        <a href="#">Dashboard</a>
        <a href="#">Setting</a>
        <a href="#">Logout</a>
      </div>
    </div>
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Seeking a plugin for a dropdown page selection element’ is closed to new replies.