@@ -, +, @@ the OPAC --- koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-reserve.tt @@ -121,7 +121,11 @@ [% IF (RESERVE_CHARGE) %]
- There is a charge of [% RESERVE_CHARGE %] for placing this hold + [% IF Koha.Preference('HoldFeeMode') == 'any_time_is_collected' %] + There is a charge of [% RESERVE_CHARGE %] for collecting this hold + [% ELSE %] + There is a charge of [% RESERVE_CHARGE %] for placing this hold + [% END %]
[% END %] --