I'm setting a "store admin" role, and want to load the kickstart menu bar. What should be the "good practice" to implement this? (enable Commerce Kickstart Menus on no-admin users)

Comments

laVera’s picture

Issue summary: View changes
mglaman’s picture

Status: Active » Fixed

The admin toolbar is powered by toolbar_megamenu which extends core's toolbar module.

Enable the "Use administration toolbar" permission.

/**
 * Implements hook_permission().
 */
function toolbar_permission() {
  return array(
    'access toolbar' => array(
      'title' => t('Use the administration toolbar'),
    ),
  );
}

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.