Jump to content

Manufacturers block drop down


Recommended Posts

Hi 


I'm having problem with the Manufacturers block drop down on my page. When I select one of the manufacturer from the drop down it doesn't return anything it's just idle. 


I've try disable and enable the module but still no luck. 


I've also change the code to 


<select id="manufacturer_list" class="form-control" onchange="autoUrl('manufacturer_list', '');">


 


But it still not working 


 


Prestashop Version 1.6 


Here's the link to my page


http://www.primocollectibles.com/shop/en/


Link to comment
Share on other sites

Try something different, instead of this in global.js

 

 

$(document).on('change', 'select[name=manufacturer_list], select[name=supplier_list]', function(){
autoUrl($(this).attr('id'), '');
});
 
 
 
Try with
 
 
$(document).on('change', 'select[name=manufacturer_list], select[name=supplier_list]', function() {
if (this.value != '')
location.href = this.value;
});
Link to comment
Share on other sites

 

Try something different, instead of this in global.js

 

 

$(document).on('change', 'select[name=manufacturer_list], select[name=supplier_list]', function(){
autoUrl($(this).attr('id'), '');
});
 
 
 
Try with
 
 
$(document).on('change', 'select[name=manufacturer_list], select[name=supplier_list]', function() {
if (this.value != '')
location.href = this.value;
});

 

 

 

Hi Nemo

Thank you for your assistance. 

I tried to change what to what you have suggested but still no luck :( 

Link to comment
Share on other sites

  • 3 weeks later...

Hi Nemo1

Try something different, instead of this in global.js

 

$(document).on('change', 'select[name=manufacturer_list], select[name=supplier_list]', function(){
autoUrl($(this).attr('id'), '');
});
 
Try with
 
$(document).on('change', 'select[name=manufacturer_list], select[name=supplier_list]', function() {
if (this.value != '')
location.href = this.value;
});

Thanks for your help, i'm getting the same error as rejii, but in my global.js it's already corrected with your proposal (i'm on 1.6.0.6)

 

Here

 

$(document).on('change', 'select[name=manufacturer_list], select[name=supplier_list]', function() {
alert('boo!');
});

I also tried this, but there were no changes.

 

I do not know what to do...

 

Many thanks if you had another idea of what it could come from and an idea to solve it

 

Regards

Link to comment
Share on other sites

  • 2 weeks later...
×
×
  • Create New...