I am using the 9.2 Web pages and I want to set it up so no patrons can submit requests manually when they are logged in
Symptom
- You want it so no patrons can submit requests manually after being signed into ILLiad
Applies to
- ILLiad
Resolution
Here are the steps you need to follow to remove the option for patrons to be unable to submit requests manually after being signed into ILLiad:
- Update the include_nav.html to comment out the section on the item dropdown:
<!-- <li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarNewRequest" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span aria-hidden="true" class="fas fa-book"></span> New Requests
</a>
<div class="dropdown-menu" aria-labelledby="navbarNewRequest">
<a class="dropdown-item" href="<#ACTION action='10' form='22'>">Article</a>
<a class="dropdown-item" href="<#ACTION action='10' form='21'>">Book</a>
<a class="dropdown-item" href="<#ACTION action='10' form='23'>">Book Chapter</a>
<a class="dropdown-item" href="<#ACTION action='10' form='24'>">Conference Paper</a>
<a class="dropdown-item" href="<#ACTION action='10' form='25'>">Patent</a>
<a class="dropdown-item" href="<#ACTION action='10' form='26'>">Report</a>
<a class="dropdown-item" href="<#ACTION action='10' form='27'>">Thesis</a>
<a class="dropdown-item" href="<#ACTION action='10' form='28'>">Standards Document</a>
<a class="dropdown-item" href="<#ACTION action='10' form='32'>">Multimedia</a>
</div>
</li>
-->
2. Update the include_nav_search.html to comment out the NavbarNewRequest:
<!-- <div class="dropdown-menu" aria-labelledby="navbarNewRequest">
<a class="dropdown-item" href="<#ACTION action='10' form='22'>">Article</a>
<a class="dropdown-item" href="<#ACTION action='10' form='21'>">Book</a>
<a class="dropdown-item" href="<#ACTION action='10' form='23'>">Book Chapter</a>
<a class="dropdown-item" href="<#ACTION action='10' form='32'>">Audio/Visual</a>
<a class="dropdown-item" href="<#ACTION action='10' form='27'>">Thesis/Dissertation</a>
<a class="dropdown-item" href="<#ACTION action='10' form='24'>">Conference Paper</a>
<a class="dropdown-item" href="<#ACTION action='10' form='28'>">Standards Document</a>
<a class="dropdown-item" href="<#ACTION action='10' form='25'>">Patent</a>
<a class="dropdown-item" href="<#ACTION action='10' form='26'>">Report</a>-->
Additional information
After you have done this, you should not see the Option under the Submit Requests have any options.
