Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Tom Bruce 122 posts 506 karma points
    Jan 08, 2018 @ 14:41
    Tom Bruce
    0

    How to display the Change password page when a user login

    Hi everyone, The Umbraco.tv shows you how to add a new user i.e. Writer/Editor and assign roles.

    When the new user login they are presented with the Change password page on the right-hand side, under the header Content.

    How do I display the Change password page.

    https://umbraco.tv/videos/umbraco-v7/content-editor/administrative-content/users/adding-users/

    enter image description here

  • Søren Tidmand 129 posts 366 karma points
    Jan 08, 2018 @ 15:49
    Søren Tidmand
    0

    Hi Tom,

    go to the /config/dashboard.config file and find the section with the alias "TheDashboard".

      <section alias="TheDashboard">
        <areas>
          <area>content</area>
        </areas>
        <tab caption="Welcome">
          <control addPanel="true" panelCaption="">/app_plugins/TheDashboard/TheDashboard.html</control>
        </tab>
        <tab caption="Change password">
          <control addPanel="true" panelCaption="">views/dashboard/ChangePassword.html</control>
        </tab>
      </section>
    

    If you do not find the tab with caption "Change password"> try to add this and save.

    Hopefully it will show up - and if not you need to add some info about which version of Umbraco you're using and if there is a ChangePassword.html file on the given location.

    /Søren

  • Tom Bruce 122 posts 506 karma points
    Jan 08, 2018 @ 22:03
    Tom Bruce
    0

    Hi Søren, I don't have a section called

    I'm using Umbraco version 7

  • Søren Tidmand 129 posts 366 karma points
    Jan 08, 2018 @ 22:44
    Søren Tidmand
    0

    Hi Tom,

    the section alias name might have changed through the different subversions (7.x), but look for a section with the

    <areas>
          <area>content</area>
        </areas>
    

    and add

    <tab caption="Change password">
          <control addPanel="true" panelCaption="">views/dashboard/ChangePassword.html</control>
        </tab>
    

    inside as shown in my earlier post. That should do it.

    /Søren

  • Tom Bruce 122 posts 506 karma points
    Jan 09, 2018 @ 10:29
    Tom Bruce
    0

    Hi Soren, this is what I have so far, but still no change password page being displayed

    <section alias="RedirectUrlManagement">
    <areas>
      <area>content</area>
    </areas>
    <!--<tab caption="Redirect URL Management">-->
    <tab caption="Change Password">
      <control>
         <control addPanel="true" panelCaption="">views/dashboard/ChangePassword.html</control>
        <!--views/dashboard/developer/redirecturls.html-->
      </control>
    </tab>
    

    enter image description here

  • Søren Tidmand 129 posts 366 karma points
    Jan 09, 2018 @ 10:41
    Søren Tidmand
    0

    Hi Tom,

    which exact Umbraco 7-version are you working with?

    There was actually some issues with the change password feature up until 7.2.+, so you might need to upgrade your installation to solve it.

    /Søren

  • Tom Bruce 122 posts 506 karma points
    Jan 09, 2018 @ 10:48
    Tom Bruce
    0

    I'm using Umbraco version 7.6.3 assembly: 1.0.6361.21154

    I can see the view, but for some unknown reason it's not being displayed

    enter image description here

  • Søren Tidmand 129 posts 366 karma points
    Jan 09, 2018 @ 10:55
    Søren Tidmand
    1

    Try to see if you can find the Change password button after clicking the avatar in the top left corner. If so you don't need the dashboard tab ;-)

    enter image description here

    /Søren

  • Tom Bruce 122 posts 506 karma points
    Jan 09, 2018 @ 11:07
    Tom Bruce
    0

    Thanks Soren, yep I can use the avatar to change the password, but would like to to add it to the dashboard.

    It's now displaying the the word Change Password

    enter image description here

Please Sign in or register to post replies

Write your reply to:

Draft