"Your Password Has Been Sent" confirmation message not displaying

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rcm1234
    Mini Mivite

    • Oct 2011
    • 71

    #1

    "Your Password Has Been Sent" confirmation message not displaying

    Hi,

    I've read that a "Your Password Has Been Sent" confirmation message should appear onscreen after a customer requests their password to be emailed to them.... but it is not showing up on my Miva site for some reason.

    Does anyone know the exact code I need to achieve this and where it goes on which pages?

    Thanks in advance.
  • KNewbrough
    Mivite

    • May 2013
    • 200

    #2
    Re: "Your Password Has Been Sent" confirmation message not displaying

    If you're on CSSUI, try this:

    Code:
                        <mvt:if expr="l.settings:messages:error_message_count">                    <div class="error-message">
                        <mvt:foreach iterator="error" array="messages:error_messages">
                            &mvt:error;
                        </mvt:foreach>
                        </div>
                        <mvt:elseif expr="l.settings:messages:information_message_count">
                        <div class="information-message">
                        <mvt:foreach iterator="message" array="messages:information_messages">
                            &mvt:message;
                        </mvt:foreach>
                        </div>
                        </mvt:if>
    On MMUI, try this:

    Code:
    <mvt:item name="messages" />
    Last edited by KNewbrough; 03-06-14, 02:30 PM.
    Kyle Newbrough
    Technical Support / Web Developer
    Miva Merchant

    Comment

    • rcm1234
      Mini Mivite

      • Oct 2011
      • 71

      #3
      Re: &quot;Your Password Has Been Sent&quot; confirmation message not displaying

      Originally posted by KNewbrough View Post
      If you're on CSSUI, try this:


      Code:
                          <mvt:if expr="l.settings:messages:error_message_count">                    <div class="error-message">
                          <mvt:foreach iterator="error" array="messages:error_messages">
                              &mvt:error;
                          </mvt:foreach>
                          </div>
                          <mvt:elseif expr="l.settings:messages:information_message_count">
                          <div class="information-message">
                          <mvt:foreach iterator="message" array="messages:information_messages">
                              &mvt:message;
                          </mvt:foreach>
                          </div>
                          </mvt:if>

      On MMUI, try this:


      Code:
      <mvt:item name="messages" />

      Hi,


      I tried adding that to my FPWD page and it did not display a message saying the password has been sent... and it redirected me to the log in page afterwards... and no message there either.


      The messages item is assigned to the account pages in Miva already so that is not the problem.


      Can someone please show me all the necessary code and which particular pages must have it?


      Thanks

      Comment

      • rcm1234
        Mini Mivite

        • Oct 2011
        • 71

        #4
        Re: &quot;Your Password Has Been Sent&quot; confirmation message not displaying

        Originally posted by rcm1234 View Post
        Hi,


        I tried adding that to my FPWD page and it did not display a message saying the password has been sent... and it redirected me to the log in page afterwards... and no message there either.


        The messages item is assigned to the account pages in Miva already so that is not the problem.


        Can someone please show me all the necessary code and which particular pages must have it?


        Thanks
        I'm using Miva 5.5 MMUI by the way.

        Comment

        • KNewbrough
          Mivite

          • May 2013
          • 200

          #5
          Re: &quot;Your Password Has Been Sent&quot; confirmation message not displaying

          That code should go on LOGN rather than FPWD. The item being assigned to the page is not enough, and you'll need the code as well. If you're on MMUI then it should be this:

          Code:
          [COLOR=#333333][I]<mvt:item name="messages" />[/I][/COLOR]
          Kyle Newbrough
          Technical Support / Web Developer
          Miva Merchant

          Comment

          Working...
          X