Jump to content

Registration Problems


Recommended Posts

Hello everyone, new day, new problem with prestashop version 1.5.2. :-(

Almost reached the end of site I tried to recheck the registration process but after entering the mail and sent forward the form to place the personal data disappears.

As you can see from the attached, DIV noSlide element.Style appears as a display: none that I have not the faintest idea where to go to get it. Manually removing the dispay: none with Firebug, everything works perfectly and is shown in the registration form.

I then tried to edit the file and authentication.tpl line in about 129 then there is this javascript code:

 

 

 else
			{
				// adding a div to display a transition
				$('#center_column').html('<div id="noSlide">'+$('#center_column').html()+'</div>');
				$('#noSlide').fadeOut('slow', function(){
					$('#noSlide').html(jsonData.page);
					// update the state (when this file is called from AJAX you still need to update the state)
					bindStateInputAndUpdate();
				});
				$('#noSlide').fadeIn('slow');
				document.location = '#account-creation';
			}

 

Nowhere unfortunately I could not find dispay: none for the <div id="noSlide"> it in the file authentication.tpl it even less in css to it. Anyone have any idea how to resolve the situation and where it goes I'm eliminate display: none?

 

Thank you all, I hope your in a timely help.

post-410670-0-56950100-1358518102_thumb.jpg

Link to comment
Share on other sites

This morning I upgraded to version 1.5.3.1 but the problem persists.

---

All ok! :D

	 else
							{
									// adding a div to display a transition
									$('#center_column').html('<div id="noSlide">'+$('#center_column').html()+'</div>');
									$('#noSlide').fadeIn('slow', function(){
											$('#noSlide').html(jsonData.page);
											// update the state (when this file is called from AJAX you still need to update the state)
											bindStateInputAndUpdate();
									});
									$('#noSlide').fadeIn('slow');
									document.location = '#account-creation';
							}

Edited by gianno74 (see edit history)
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...