@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/en/includes/facets.inc | 2 ++ koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc | 2 ++ 2 files changed, 4 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/facets.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/facets.inc @@ -1,3 +1,4 @@ +[% USE AuthorisedValues %] [% IF ( opacfacets ) %] [% IF ( facets_loop ) %]
@@ -27,6 +28,7 @@ [% url = BLOCK %][% url %][% "&sort_by=" _ sort_by |url %][% END %] [% END %] [% FOREACH facet IN facets_loo.facets %] + [% IF facets_loo.type_label_CollectionCodes %][% SET facet.facet_label_value = AuthorisedValues.GetByCode('CCODE',facet.facet_label_value,0) || facet.facet_label_value %][% END %]
  • [% IF facet.active %] [% SET local_url = url _ "&nolimit=" _ facet.type_link_value _ ":" _ facet.facet_link_value %] --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc +++ a/koha-tmpl/opac-tmpl/bootstrap/en/includes/opac-facets.inc @@ -1,3 +1,4 @@ +[% USE AuthorisedValues %] [% IF ( opacfacets && facets_loop && total ) %]

    Refine your search

    @@ -36,6 +37,7 @@ [% url = BLOCK %][% url %][% "&sort_by=" _ sort_by |url %][% END %] [% END %] [% FOREACH facet IN facets_loo.facets %] + [% IF facets_loo.type_label_CollectionCodes %][% SET facet.facet_label_value = AuthorisedValues.GetByCode('CCODE',facet.facet_label_value,1) || facet.facet_label_value %][% END %]
  • [% IF facet.active %] [% SET local_url = url _ "&nolimit=" _ facet.type_link_value _ ":" _ facet.facet_link_value %] --