@@ -, +, @@ opac-MARCdetail.pl --------- -- 245$a should be visible. the record displayed in OPAC. -- 245$a (Title) will still be visible! -- 245$a (Title) will be hidden. 'Advanced constraints' and check 'OPAC' -- 245$a (Title) will be visible again. --- opac/opac-MARCdetail.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/opac/opac-MARCdetail.pl +++ a/opac/opac-MARCdetail.pl @@ -100,9 +100,10 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( } ); +my ($bt_tag,$bt_subtag) = GetMarcFromKohaField('biblio.title',$itemtype); $template->param( bibliotitle => $biblio->{title}, -); +) if $tagslib->{$bt_tag}->{$bt_subtag}->{hidden} <= 0; #<=0 is OPAC visible. # get biblionumbers stored in the cart if(my $cart_list = $query->cookie("bib_list")){ --