[-] MO : #PSFV-468 - In layered navigation, when you filter on some criteria, the "see the product" for resulting products targets to the regular product URL without filters

This commit is contained in:
mDeflotte
2012-02-14 16:09:22 +00:00
parent 02f581c858
commit 4a4b2abc0a
+4 -1
View File
@@ -452,7 +452,10 @@ function getUrlParams()
function updateProductUrl()
{
// Adding the filters to URL product
$.each($('ul#product_list li.ajax_block_product .product_img_link, ul#product_list li.ajax_block_product h3 a, ul#product_list li.ajax_block_product .product_desc a'), function() {
$.each($('ul#product_list li.ajax_block_product .product_img_link,'+
'ul#product_list li.ajax_block_product h3 a,'+
'ul#product_list li.ajax_block_product .product_desc a,'+
'ul#product_list li.ajax_block_product .lnk_view'), function() {
$(this).attr('href', $(this).attr('href') + param_product_url);
});
}