web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Pages / Portal navigation diff...
Power Pages
Answered

Portal navigation difficulties

(0) ShareShare
ReportReport
Posted on by 21

Hi,

I need some changes in portal navigation and I cannot find the solution.

1. Is it possible to change the default text of "Profile" item in the pull down menu? I have found a snippet name for "Logout" item (which is "links/logout") but I cannot find a way how to change the "Profile" item name.

 

 

2019-11-08 12_39_43-Window.png

2. I have 3 web user roles with corresponding different web page permissions. I have expected that a menu will change accordingly to a specific logged in user. Their sets of web pages are different. I don't understand why it is not working this way. Do you have any experience with that? What should I check?

A. User 1 - web role "Puvodce" with 4 associated web pages:

2019-11-08 12_51_17-Window.png 

A menu contains these 4 pages:

2019-11-08 12_53_14-Window.png

B. User 2 with a different web role "Skaut" with only 1 associated web page:

2019-11-08 13_02_58-Window.png

A menu contains stilll all 4 pages:

2019-11-08 13_04_21-Window.png

 

Aby idea?

Thank you

Categories:
I have the same question (0)
  • v-monli-msft Profile Picture
    Microsoft Employee on at

    Hi @JanVanek ,

     

    1. I think this cannot be achieved currently. Try to add an idea in below forum if you need this:

    https://powerusers.microsoft.com/t5/PowerApps-Ideas/idb-p/PowerAppsIdeas

    2. I have found a blog talking about this, please see if this helps:

    https://readyxrm.blog/2019/08/26/powerapps-portals-how-to-hide-or-show-content-based-on-logged-in-user/

     

    Regards,

    Mona

  • Jan Vanek Profile Picture
    21 on at

    Hi @v-monli-msft,

    @1. Thank you for your suggestion.

    @2. I know that post, a very good source of initial information.  Unfortunately, the reality seems more complicated and I cannot achieve a good result using the same method. My changes of Web page permissions, my changes of weblink sets etc. do not populate to the portal and I can still see the old navigation in the portal header and I don't know why. Is there a more detailed source of information about a process of publishing changes? Why do I have 7 items in the navigation bar:

    2019-11-12 12_51_37-Window.png

    while I have only 4 weblinks in the current Default weblink set?

    2019-11-12 12_51_02-Window.png

    I need help with this.

    Alternatively, I have tried to use more Weblink sets and to dynamically choose an appopriate weblink set according to a user's role. I have used this Liquid code (a "new_rolenaportalu" is a custom field in the Contact entity, a picklist with my 3 available web roles) in the header html code:

    {{ user.new_rolenaportalu.value }}

    {% if user.new_rolenaportalu.value == 100000000 %}

    {% assign primary_nav = weblinks["Default"] %}

    {% endif %}

    {% if user.new_rolenaportalu.value == 100000001 %}

    {% assign primary_nav = weblinks["Primary Navigation"] %}

    {% endif %}

    {% if user.new_rolenaportalu.value == 100000002 %}

    {% assign primary_nav = weblinks["Custom Navigation"] %}

    {% endif %}

    It works, I can switch the weblink sets for various types of users, but again, not everything works fine. When a custom weblink set is chosen (a "Custom Navigation" set), nothing is rendered, only a black background will stay there:

    2019-11-12 13_13_37-Window.png

    Any idea, what is going on? Maybe @nickdoelman or @dileeps could help?

    Thanks

  • Nick.Doelman Profile Picture
    45 Most Valuable Professional on at

    Not sure if this helps, but I wrote a blog on multi-brand portals (where we would change the navigation based on user/page) here: https://readyxrm.blog/2019/01/18/building-a-multi-brand-dynamics-365-portal/

     

    One thing I had to do for it to render properly is change the Header/OutputCache/Enabled Site Setting set to FALSE

     

    I was told that I should have to do that and that there was a way around that, but I don't have that detail in front of me right now.

     

    I didn't have time to dive deep into your issue today, but maybe the info provided might help.

     

    In terms of the "Profile" item, you might want to download the portal source code and dig through the code to see if there is a corresponding snippet for it.  I currently don't have it downloaded (Sorry, I know I am not really helping today) but you can find it here:  https://www.microsoft.com/en-us/download/details.aspx?id=55789

     

    Cheers

    Nick

  • rulesrchanged1 Profile Picture
    Microsoft Employee on at

    When you are making changes to your portal configuration through portal management app, one of the most important thing is to ensure that those changes are published to portal. That doesn't happen automatically. To do that, there are two options: -

    a) You can go to Portal design studio (new ui designer) and do browse action.

    b) You can log in to portal with a user who has all website access permission. Navigate to /_services/about page and it will show option to clear cache and clear configuration. Choose either one. (https://docs.microsoft.com/en-us/powerapps/maker/portals/admin/clear-server-side-cache)

     

    Now for weblinks, if you just want weblinks to be dynamic, then you will need to do following: -

    a) For the webpages, enable webpage access control rule and show/hide webpages for specific roles (https://docs.microsoft.com/en-us/powerapps/maker/portals/configure/webpage-access-control).

    b) In your weblink record, make sure "Disable Page Validation" is not enabled . https://docs.microsoft.com/en-us/powerapps/maker/portals/configure/manage-web-links

     

    If you want to use different weblinks altogether, then use the example Nick provided below. However, don't turn off header output cache, use substitution liquid tags for your dynamic elements. It is described here https://docs.microsoft.com/en-us/dynamics365/portals/enable-header-footer-output-caching

    b) In your weblink, 

  • rulesrchanged1 Profile Picture
    Microsoft Employee on at
    Sry totally forgot abt profile part, it's a content snippet. Pretty much most of portal text would be either in content snippet or pages since they are enabled for localization.
    I don't remember the name, but u can find content snippet with value as profile

    Or

    You can go to header web template, and search for profile in it, it will be referencing actual name of snippet
  • Jan Vanek Profile Picture
    21 on at

    Dear @dileeps and @nickdoelman ,

    I really appreciate your suggestions and advice. I feel not alone and it makes me happy to continue my efforts. There is hardly anybody to discuss these topics, not only in my own country (Czech Republic), where I feel quite alone.

     

    As for a profile content snippet, I have found this one: "Profile Link Text". I had added it among other snippets but nothing has changed so far (?!).

     

    I somehow feel that publishing the changes to portal could be the crucial thing, in my case. When I go to the "portalURL"/_services/about page, I can see only this: 

    2019-11-13 16_04_19-Window.png

    Is that OK? I would expect more information and a "Clear Cache" button as well.

     

    I have also applied substitution liquid tags according to your hint, with no effect.

     

    Currently, I am checking my portal settings including the webpage access control rules, weblink sets etc. according your recommended blog posts. Unfortunately, everything seems OK and my problems are not solved, so far.

  • Verified answer
    Nick.Doelman Profile Picture
    45 Most Valuable Professional on at

    To see the "Clear Cache" button, login first to your portal with a portal user that has the "system administrator" webrole assigned.  Once you are logged in (you will see the legacy portal editor pop-ups) then navigate to _services/about and you will see the clear cache buttons + other info.

     

    Cheers

    Nick

  • Jan Vanek Profile Picture
    21 on at

    Yes! Immediate effect! It has no point to just use the "Reset" button or browse the pages in the Portal design studio.

    Thank you very much. I have learnt a lot! I will close this thread. The rest are only minorities.

    Cheers

    Jan

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Power Pages

#1
Suriyanarayanan V Profile Picture

Suriyanarayanan V 45

#2
oliver.rodrigues Profile Picture

oliver.rodrigues 14 Most Valuable Professional

#3
DP_Prabh Profile Picture

DP_Prabh 13

Last 30 days Overall leaderboard