- This topic has 2 replies, 3 voices, and was last updated 6 years, 11 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Forums › Forums › Search & Filter Pro › Customizing "Display Count"
Tagged: customize, display count
Hey Jennifer – I’m afraid not – its hardcoded in… I’ll consider making this optional in a future update.
Thanks
Hi there, a bit late but this is what’s working for me :
$('span.sf-count').text(function(_, text) {
return text.replace(/\(|\)/g, '');
});
$(document).on("sf:ajaxformfinish", ".searchandfilter", function(){
$('span.sf-count').text(function(_, text) {
return text.replace(/\(|\)/g, '');
});
});
Hope this can help. Cheers.