https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23793 --- Comment #5 from Tomás Cohen Arazi <tomascohen@gmail.com> --- Simplified version, based on 23807. Update synopsis here: my $biblio = Koha::Biblios->find( $biblio_id, { prefetch => [ items, metadata ] } ); my $opachiddenitems_rules; eval { my $yaml = C4::Context->preference('OpacHiddenItems') . "\n\n"; $opachiddenitems_rules = YAML::Load($yaml); }; my @items = grep { !$_->hidden_in_opac({ rules => $opachiddenitems_rules }) @{$biblio->items}; my $record = $biblio->metadata->record; my $processor = Koha::RecordProcessor->new( { filters => ('EmbedItems'), options => { items => \@items } } ); $processor->process( $record ); -- You are receiving this mail because: You are watching all bug changes.