I frequently use Administration Menu Source to create a better administrative experience for my end users. It gives me a way to use a different menu as the administrative menu per role.

This works on the desktop break-point, but is replaced by the default 'management menu' on mobile breakpoints. This, combined with the lack of account links on mobile make this unusable for me.

Is there at least a way to disable the mobile nav?

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

aaronlsilber created an issue. See original summary.

RAFA3L’s picture

Try enable and disable "Enable Responsive Menu" under Advanced Settings, work for me

admin/config/administration/adminimal_menu

edward.peters’s picture

Sadly the fix suggested doesn't work for me. I too need this compatibility with Admin Menu Source. Any possibilities?

drclaw’s picture

Status: Active » Needs review
FileSize
1.76 KB

Looks like the problem is just that this does it's work before Administration Menu Source. Increasing the module weight appears to do the trick! I picked 5 as an arbitrary weight. Could be higher.

Patch attached

Status: Needs review » Needs work

The last submitted patch, 4: adminimal_admin_menu-module_weight-4.patch, failed testing.

mmd’s picture

Hi, guys, I have changed weight for module "adminimal_admin_menu". It works for me.
Weight adminimal_admin_menu must be larger of admin_menu_source weight.

hook_update_N() {
db_update('system')
    ->fields(array('weight' => 1))
    ->condition('name', 'adminimal_admin_menu')
    ->condition('type', 'module')
    ->execute();
}
Tess Bakker’s picture