Member menu position

We all know the member menu can be selected to be,

  • top
  • static
  • bottom

Problem, in 7.0.x you had a selector on the member menu for placement choice for the member to select.

If a member had the menu at the top, the site was upgraded to 7.1.5, now the selector is gone from the member menu.

In the admin, the site is set default to show the menu at the bottom.

If members have the menu set otherwise there is or I cannot find the option for them to move their menu.

Who knows where this is now? I guess I could do it via the database but the site admin cannot do this.

Thanks

ManOfTeal.COM a Proud UNA site, six years running strong!
Quote · 1 Apr 2015

admin/settings/template/setting

same options as before..

I would prefer to have this off screen, with a tab that pops up on hover or click. 

Gets in way of my footer :-)... another job to do!

Quote · 23 Apr 2015

I know where the admin side is.

This is relation to a normal members profile.

In 7.0.9 you had the option in the member menu where the "member" could choose their member menu position and it would override the the setting you pointed to.

Now that the site has been upgraded that option is no longer on the member menu.

You would think Alex would answer this question.

admin/settings/template/setting

same options as before..

I would prefer to have this off screen, with a tab that pops up on hover or click. 

Gets in way of my footer :-)... another job to do!

 

ManOfTeal.COM a Proud UNA site, six years running strong!
Quote · 24 Apr 2015

It is in cookies (inc/classes/BxDolMemberMenu.php):

            $this -> sMemberMenuPosition = ( isset($_COOKIE['menu_position']) )
                ? $_COOKIE['menu_position']
                : getParam( 'ext_nav_menu_top_position' );

I would suggest to place the following code into inc/header.inc.php for some time, while all users will have this cookie cleared:

if (isset($_COOKIE['menu_position'])) {
    setcookie ("menu_position", "", time() - 86400);
    unset($_COOKIE['menu_position']);

 

Rules → http://www.boonex.com/terms
Quote · 27 Apr 2015

Thanks!

ManOfTeal.COM a Proud UNA site, six years running strong!
Quote · 28 Apr 2015

For clarification, where does the member go to set the position of the member menu bar?

Geeks, making the world a better place
Quote · 28 Apr 2015

 

For clarification, where does the member go to set the position of the member menu bar?

 That was only an option in 7.0.x.

ManOfTeal.COM a Proud UNA site, six years running strong!
Quote · 28 Apr 2015
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.