Activities of "vd"

Hello, you can use this key eThemeLeptonXComponents.MobileNavbarSettings to manage the mobile navbar settings.

It works. Thank you.

May I also ask how you have added the FAQ component that would result in a scroll problem?

home.component.ts <a [routerLink]="'/faq'" class="btn btn-primary">FAQ</a>

app-routing.module.ts { path: 'faq', loadChildren: () => import('./faq/faq.module').then(m => m.FaqModule) },

faq-routing.module const routes: Routes = [{ path: '', component: FaqComponent }];

Hi @vd

Can you share some screenshots? and make sure your abp and leptonx theme are the latest version. thanks.

My abp packages are 9.0.3 and leptonx is 4.0.4.

Here's a gif illustrating both problems :

This was supposed to be fixed but it's not :

https://abp.io/support/questions/8061/How-can-I-easily-hide-the-bottom-right-menu-items-in-Angular

And another one : Page scroll position doesn't reset to top when navigating between custom pages using routerLink :

<a [routerLink]="'/faq'">

My goal is not to rewrite the whole mobile navigation bar, just to remove a menu for both desktop and mobile.

Others have asked for mobile menu customization recently : https://abp.io/support/questions/7933/Mobile-menu-for-LeptonX-theme-modifications

Thank you

Well it makes some sense :

I had no tenant so the "standard" subscription was neither attached to any tenant nor to the host.

Hence it only worked when changing host settings and not the "standard" subscription settings.

When I create a tenant, assign it the standard edition and then login under a user that belongs to this tenant, it works.

Since we are not using tenants or subscriptions, I'll stick with the host settings.

I was accessing features through Saas > Editions > Standard > Actions > Features (which changes the features of the standard edition, Not the host)

Whereas the correct path is Settings > Feature management > Manage host features

I can reproduce in incognito mode as well.

How can I send you a minimal test project ?

Since upgrading to 8.3.1, I get a lot of warnings in the console :

Warnings seem to be related to menu items. I think that the tracking expression when enumerating the menu entries should be adjusted on your side.

In Angular, default cookie and privacy policy links are wrong :

Please update the urls in app.module :

Hello,

Please try with this code

export class AppComponent implements OnInit { 
 
  constructor(private replaceComponent: ReplaceableComponentsService, private config: ConfigStateService ) {} 
 
  ngOnInit(): void { 
    const currentUser = this.config.getOne("currentUser"); 
      if(currentUser.roles.includes('admin')) 
        { 
          this.replaceComponent.add({ 
            component: MySettingsComponent, 
            key: eThemeLeptonXComponents.Settings, 
        }); 
        } 
 
  } 
} 
 

It will hide menu for 'admin' role and for other users it will show. You may customize it as per your requirement.

Thanks,

When I say other customer, I meant, another application instance but ok, I get the gist. Thanks.

However, I just realized that the removed 'settings' menu still appears in mobile :

Shouldn't it be removed as well ?

Showing 1 to 10 of 19 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 01, 2025, 08:37