Remove Navigator Category

Status
Not open for further replies.

changawer13

New Member
Feb 9, 2020
12
1
Hello,

How do I remove this category from my navigator?



Thanks for your help! :)

- changawer13
 

Karel

Member
May 15, 2019
80
13
Wow I did this yesterday :D! This works for Plus so if you're using Plus:

Find the class named NavigatorManager and comment one line out like down here
Code:
public NavigatorManager()
        {
            this._topLevelItems = new Dictionary<int, TopLevelItem>();
            this._searchResultLists = new Dictionary<int, SearchResultList>();
            
            //Does this need to be dynamic?
            this._topLevelItems.Add(1, new TopLevelItem(1, "official_view", "", ""));
            this._topLevelItems.Add(2, new TopLevelItem(2, "hotel_view", "", ""));
            //this._topLevelItems.Add(3, new TopLevelItem(3, "roomads_view", "", ""));
            this._topLevelItems.Add(4, new TopLevelItem(4, "myworld_view", "", ""));

            this._featuredRooms = new Dictionary<int, FeaturedRoom>();

            this.Init();
        }

This worked for me :)
 
  • Like
Reactions: Joe

changawer13

New Member
Feb 9, 2020
12
1
Wow I did this yesterday :D! This works for Plus so if you're using Plus:

Find the class named NavigatorManager and comment one line out like down here
Code:
public NavigatorManager()
        {
            this._topLevelItems = new Dictionary<int, TopLevelItem>();
            this._searchResultLists = new Dictionary<int, SearchResultList>();
           
            //Does this need to be dynamic?
            this._topLevelItems.Add(1, new TopLevelItem(1, "official_view", "", ""));
            this._topLevelItems.Add(2, new TopLevelItem(2, "hotel_view", "", ""));
            //this._topLevelItems.Add(3, new TopLevelItem(3, "roomads_view", "", ""));
            this._topLevelItems.Add(4, new TopLevelItem(4, "myworld_view", "", ""));

            this._featuredRooms = new Dictionary<int, FeaturedRoom>();

            this.Init();
        }

This worked for me :)
Thanks! <3

 
Status
Not open for further replies.

Users who are viewing this thread

Top