·
Added a discussion

I'm using the splash page but having an issue when user clicks the Login link. I get a popup message "Leave site? Changes you made may not be saved." Happening on all browsers. Anyone know why this is happening?

  • 616
Comments
    • I resolved the issue by changing the "join" form box (on the splash page) to "login" form box. This stopped the "leave the page?" message. So I changed the code:

         <div class="bx-spl-cell bx-spl-c2 bx-hide-when-logged-in">

                    <div class="bx-spl-ccnt bx-def-padding">__join_form_in_box__</div>

                  </div>

              </div>

      to:

         <div class="bx-spl-cell bx-spl-c2 bx-hide-when-logged-in">

                    <div class="bx-spl-ccnt bx-def-padding">__login_form_in_box__</div>

                  </div>

              </div>

      that fixed it.

      • This is exactly what I needed to know! Thanks!

        Login or Join to comment.