Add Login / Register to WordPress menu

Steps:

  • Go to Rover IDX > Styling
  • Click "Manage" next to "Add Login / Register to..."
  • Click the green toggle next to "Append to menu"
  • Click the radio button next to the name of the menu you want to add "Login / Register"
  • Check "Include login dropdonw showing logged-in options. When you are logged in, the Login / Register menu will display a list of panels (Control Panel, My Favorites, My Saved Searches, Report Panel, Market Conditions Panel)

Manually add menu items

This is a dropdown menu for Rover IDX "Login / Register".  It allows you to Login and  Logout, and it is context sensitive.  When you are Logged In, certain menu items are displayed and others are hidden.  For instance, when you are logged in, you will see a menu item for Control Panel - which is the CRM if you are an agent, or if you are a client, your profile settings, saved searches, favorited properties, and the ability to manage your password.

You can customize this for your own needs, just make sure to use the correct idx- and rover- classes:

<li class="menu-item idx-menu-item menu-item-has-children menu-item-type-rover-login">
<a href="#" class="rover-login-label  menu-link rover-dropdown-toggle" data-label="Login"><span class=" login-dropdown-label">Login</span><span role="presentation" class=" dropdown-menu-toggle"></span></a>
<ul class="sub-menu idx-dropdown-menu idx-framework idx-login-framework rover-400">
<li class="menu-item idx-show-if-not-logged-in "><a href="#" class="rover-login menu-link" rel="nofollow">Login</a></li>
<li class="menu-item idx-show-if-not-logged-in "><a href="#" class="rover-register menu-link" rel="nofollow">Register</a></li>
<li class="menu-item idx-show-if-logged-in  rover-control-panel" style="display: none;"><a href="/rover-control-panel" class="menu-link" rel="nofollow">Control Panel</a></li>
<li class="menu-item idx-show-if-logged-in  rover-control-panel fav" style="display: none;"><a href="/rover-control-panel/my-favorites/" class="menu-link" rel="nofollow">My Favorites</a></li>
<li class="menu-item idx-show-if-logged-in  rover-control-panel ss" style="display: none;"><a href="/rover-control-panel/my-saved-searches/" class="menu-link" rel="nofollow">My Saved Searches</a></li>
<li class="menu-item idx-show-if-agent  rover-report-panel" style="display: none;"><a href="/rover-report-panel/" class="menu-link" rel="nofollow">Report Panel</a></li>
<li class="menu-item idx-show-if-agent  rover-market-panel" style="display: none;"><a href="/rover-market-conditions/" class="menu-link" rel="nofollow">Market Conditions</a></li>
<li class="menu-item idx-show-if-logged-in  rover-logout" style="display: none;"><a href="#" class="rover-logout menu-link" rel="nofollow">Logout</a></li>
</ul>
</li>