Jump to content

Recommended Posts

Hi Guys,

 

it is a couple of days that when i try to create an account, fromt he FO, it does not work. It comes out a blank page and it does nothing.

 

It comes out with this url address in the navigation bar: http://www.ateamstore.it/it/autenticazione?back=my-account#account-creation

 

what happened???

 

I did nothing in the php, i just used ordinarely the back office.

 

Please give me an help about it because i have my ecommerce stopped

Link to comment
Share on other sites

  • 2 weeks later...

okie now m getting these errors -_-

 

Warning: Function addCSS() is deprecated in /home/exotijbb/public_html/buyjama/modules/homecategories/homecategories.php on line 34

in /home/exotijbb/public_html/buyjama/classes/Tools.php on line 1845

 

Warning: Function addJS() is deprecated in /home/exotijbb/public_html/buyjama/modules/searchspeech/searchspeech.php on line 57

in /home/exotijbb/public_html/buyjama/classes/Tools.php on line 1845

Link to comment
Share on other sites

link to my site : www.buyjama.com

 

@benjamin its called

 

Voice recognition

 

Developed by : Samdha | Version : 1.0.0.0

 

 

It works fine with voice search :)

 

@vekia anything more you need to know>?

 

@benjamin yea i checked the files are there in the modules...

Link to comment
Share on other sites

i've got a little idea (workaround) - for test purposes

 

open the authentication.tpl page located in your theme directory

you've got there function:

$('#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();
  $(this).fadeIn('slow', function(){
   document.location = '#account-creation';
  });
 });

 

change it (whole code above) to:

$('#noSlide').html(jsonData.page);
bindStateInputAndUpdate();

  • Like 2
Link to comment
Share on other sites

in fact, this second form were generated in your page before - but it wasn't visible - so you saw "blank" page.

 

it's because script removed the visibility of this form (with function $('#noSlide').fadeOut('slow', function()).

 

so I suggested to remove this function - and as you can see - it works well now :)

Link to comment
Share on other sites

  • 2 months later...

i've got a little idea (workaround) - for test purposes

 

open the authentication.tpl page located in your theme directory

you've got there function:

$('#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();
	  $(this).fadeIn('slow', function(){
	   document.location = '#account-creation';
	  });
	 });
change it (whole code above) to:

$('#noSlide').html(jsonData.page);
bindStateInputAndUpdate();

 

So perfect solution Vekia! Top notch!

Link to comment
Share on other sites

×
×
  • Create New...