Jump to content

Recommended Posts

This is an unusual post to be making but I recently had an issue with the registration page after updating to 1.6.1.7 basically when you clicked the button to create an account it would go to the right place but before you can enter any information it would redirect you back to the homepage appending #account-creation to the url (homepage.com#account-creation).

 

I managed to resolve this issue by editing the authentication.js file. I changed a line in there that said 

document.location = "#account-creation" 

and changed it to 

document.location += "#account-creation"

So that the appended text was added to the login url rather than the homepage (homepage.com/login#account-creation). I just wanted to know if there would be an issue with this as it isn't like this by default.

 

I saw quite a lot of people having a similar issue but the solutions provided for it didn't work to fix the problem.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...