Jump to content

Bug? whit explorer


Recommended Posts

Hello,

I just installed a shop PRESTASHOP 1.5.1. All works fine in CHROME and FIREFOX. But, on Explorer (several ordinatreurs) The "button" ALREADY REGISTERED does not work. Nothing happens ... the page remains the same ...

 

I would need help ...

thank you

Link to comment
Share on other sites

try to change statemanagement.js :

 

function updateState(suffix)
{
console.log($('select#id_state'+(suffix !== undefined ? '_'+suffix : '')+' option:not(:first-child)'));
$('select#id_state'+(suffix !== undefined ? '_'+suffix : '')+' option:not(:first-child)').remove();

 

 

become :

 

 

function updateState(suffix)
{
//console.log($('select#id_state'+(suffix !== undefined ? '_'+suffix : '')+' option:not(:first-child)'));
$('select#id_state'+(suffix !== undefined ? '_'+suffix : '')+' option:not(:first-child)').remove();

 

i got it from :

 

http://www.prestashop.com/forums/index.php?/topic/161835-prestashop-jne-shipping-module-reg-oke-dan-yes/page__view__findpost__p__959042

Link to comment
Share on other sites

×
×
  • Create New...