Jump to content

terms and conditions popup not working PS1.4.7 / order-address.js


Recommended Posts

Hi there,

 

Can you tell me what's wrong with the terms and conditions popup with PS 1.4.7.

 

During the ordering steps, I click it and no popup window opens up.

 

Someone said that it was an issue with mytheme/js/order-address.js

I tried disabling it it, and sure enough, the T&C popup works again.

 

What about all the Javascript in order-address.js?

 

What does this do? What will go wrong without this.

 

Cheers, nik

Link to comment
Share on other sites

  • 4 months later...

Works with these changes

 

http://www.prestashop.com/forums/topic/163082-terms-conditions-link-not-opening/

 

In the file order-address.js located in the js folder of my theme, I changed

 

 

$(document).ready(function()

{

updateAddressesDisplay(true);

});

 

to

 

 

$(document).ready(function()

{

if (typeof(addresses)!='undefined') updateAddressesDisplay(true);

});

Link to comment
Share on other sites

×
×
  • Create New...