Version>Funnelback 15.10.0
Whenever I click on any of the facet links/navigation I get &sort=dmeta2&
in the URL which breaks the results page.
I had to resort to using jQuery:
//correct URL
$('.uc-facet li a').each(function() {
$(this).attr("href", function(index, oldfacet) {
return oldfacet.replace(/&/g, "&");
});
});
example URL: <a href="search.html?collection=courseguide&amp;form=course&amp;profile=_default_preview&amp;sort=dmeta2&amp;query=pharmacy&smeta_B_sand=undergraduate">Undergraduate</a>
Can't figure out why this is occurring - has anyone else had this issue and how it was fixed?
Thanks in advance
NickyP