Change field in OPAC ACQ request from mandatory to non-mandatory
- Product: Aleph
- Product Version: 22, 23
- Relevant for Installation Type: Dedicated-Direct, Direct, Local, Total Care
Question
How to change a field in the OPAC ACQ request from mandatory to non-mandatory?
Answer
See below example of changing the title field in file $alephe_root/www_f_lng/acq-request from mandatory to non mandatory. Change the following lines from ...
<tr>
<td class=td2><label for="title">Title</label></td>
<td class=td2>
<span class=text2 title="Mandatory">*</span>
</td>
<td class=td2>
<input id="title" size=40 maxlength=120 name="BIB_M_2451_a_1200" value="$1200">
</td>
</tr>
... to ...
<tr>
<td class=td2><label for="title">Title</label></td>
<td class=td2> </td>
<td class=td2>
<input id="title" size=40 maxlength=120 name="BIB_M_2451_a_1200" value="$1200">
</td>
</tr>
- Article last edited: 27-Sept-2016