From a138254c79e16be769b2413f9899a5186b89e8eb Mon Sep 17 00:00:00 2001 From: Ivan Dziuba Date: Mon, 16 Nov 2020 12:19:32 -0500 Subject: [PATCH] Bug 27035: Shows the number of results in a facets after facet selection System preferences: displayFacetCount - Show; Before, When we select a facet the number of results is not displayed, after searching Ex. Marriage -- Fiction [x] After, When we select a facet the number of results is displayed, after searching Ex. Marriage -- Fiction (2) [x] --- koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc index dad168a4ef..47fd1dae4a 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc @@ -52,7 +52,7 @@ [% END %] [% IF facet.active %] [% local_url = BLOCK %][% url | $raw %][% "&nolimit=" _ facet.type_link_value _ ":" _ facet.facet_link_value | url %][% END %] - [% facet.facet_label_value | html %] + [% facet.facet_label_value | html %] ([% facet.facet_count | html %]) [x] [% ELSE %] [% local_url = BLOCK %][% url | $raw %][% "&limit=" _ facet.type_link_value _ ":" _ facet.facet_link_value | url %][% END %] -- 2.17.1