Jump to content

Filtrowanie po atrybutach/cechach


Recommended Posts

Jasne. Skorzystałem z tego modułu http://prestashopforum.pl/index.php?topic=9609.0 i w pliku blocklayered.js usunąłem linijkę reloadContent(); Tak powinna wygłądać ta funckja:

$(document).ready(function()
{
	cancelFilter();
	openCloseFilter();
	
	$('#layered_form input[type=button], #layered_form label.layered_color').live('click', function()
	{
		if (!$('\'input[name='+$(this).attr('name')+']:hidden\'').length)
			$('<input />').attr('type', 'hidden').attr('name', $(this).attr('name')).val($(this).attr('rel')).appendTo('#layered_form');
		else
			$('\'input[name='+$(this).attr('name')+']:hidden\'').remove();
		reloadContent();
	});
	
	$('#layered_form input[type=checkbox]').live('click', function()
	{
		reloadContent();
	});
	
	paginationButton();
});

W moim przypadku to działą, daj znać jak będzie u Cb.

Link to comment
Share on other sites

×
×
  • Create New...