From: Garry Collum Date: Wed, 16 Dec 2020 19:22:54 +0000 (-0500) Subject: LP1908298 Bootstrap OPAC: Type filter missing from advanced search X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=5146d6f7b4a6124479abd7d169f2fdb2ff478ea9;p=evergreen%2Fpines.git LP1908298 Bootstrap OPAC: Type filter missing from advanced search The Item Type filter and the Bib Level filter were both commented out in the opac's config.tt2 file. This patch removes the comment hashmarks. To test. Go to the Advanced Search in the Bootstrap Opac. Notice that the Item Type filter and Bib Level Filters are missing. Apply the patch. The two filters should now be displayed. Signed-off-by: Garry Collum --- diff --git a/Open-ILS/src/templates-bootstrap/opac/parts/config.tt2 b/Open-ILS/src/templates-bootstrap/opac/parts/config.tt2 index 695823b30e..7da66a7e49 100755 --- a/Open-ILS/src/templates-bootstrap/opac/parts/config.tt2 +++ b/Open-ILS/src/templates-bootstrap/opac/parts/config.tt2 @@ -140,12 +140,12 @@ facet.default_display_count = 4; # for consistency. search.adv_config = [ - #{adv_label => l("Item Type"), adv_attr => ["mattype", "item_type"], id => 'adv_selector_item_type'}, + {adv_label => l("Item Type"), adv_attr => ["mattype", "item_type"], id => 'adv_selector_item_type'}, {adv_label => l("Item Form"), adv_attr => "item_form", id => 'adv_selector_item_form'}, {adv_label => l("Language"), adv_attr => "item_lang", id => 'adv_selector_item_lang'}, {adv_label => l("Audience"), adv_attr => ["audience_group", "audience"], id => 'adv_selector_audience', adv_break => 1}, {adv_label => l("Video Format"), adv_attr => "vr_format", id => 'adv_selector_video_format'}, - #{adv_label => l("Bib Level"), adv_attr => "bib_level", id => 'adv_selector_bib_level'}, + {adv_label => l("Bib Level"), adv_attr => "bib_level", id => 'adv_selector_bib_level'}, {adv_label => l("Literary Form"), adv_attr => "lit_form", id => 'adv_selector_lit_form'}, {adv_label => l("Shelving Location"), adv_special => "copy_location", id => 'adv_copy_location_selector', js_only => 101, adv_break => 1}, {adv_label => l("Search Library"), adv_special => "lib_selector", id => 'adv_org_selector'},