Webopac Membership Registration - Deactivation

classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

Webopac Membership Registration - Deactivation

nsid
Hi there,

Could you please inform me, how I can disable the "Membership Registration" option in WebOPAC?

Regards
Reply | Threaded
Open this post in threaded view
|

Re: Webopac Membership Registration - Deactivation

nsid
Hi all,

I found a solution to disable the "Membership Registration" from WebOPAC. To be honest, it is more a patent but anyway

In directory "C:\NewGenLibFiles\OpacTemplates\default" I renamed the file "MemberShip.ftl" to "membership-OLD.ftl" and I created a new one "MemberShip.ftl" where using html I created a webpage with the message "Memembership Registration is disabled. Please contact the librarian".

This is the simple code inside the new "MemberShip.ftl":

<p>Membership Registration is disabled. Please contact the librarian.</p>

<p><a href="http://yoursite:8080/newgenlibctxt">Back to Catalogue...​</a></p>

<p>&nbsp;</p>

If there is a more "normal" solution to disable the WebOPAC "Membership Registration" option, I would like to know it.


Reply | Threaded
Open this post in threaded view
|

Re: Webopac Membership Registration - Deactivation

sonukilskanna
seriously this is a good idea.

I tried this code and I succeeded.

and also I tried another way

In LibraryHeader.ftl

you can find

 <div  align="right"><#include "Login.ftl">|
                <#include "Languages.ftl"><#if Login.PatronId ??><#else><a href="OPAC2Utility?From=${From}<#if From='Library'>&LibraryId=${LibraryHeader.LibraryId}</#if>&OPID=29">|${LibraryHeader.LocalMessage.Signup} < / a > </#if></div> 

change that html code to



<div  align="right"><#include "Login.ftl">|
                <#include "Languages.ftl"><#if Login.PatronId ??><#else><href="OPAC2Utility?From=${From}<#if From='Library'>&LibraryId=${LibraryHeader.LibraryId}</#if>&OPID=29">|${LibraryHeader.LocalMessage.Signup}</#if></div>


then the signup link will disable

just try it once.
Reply | Threaded
Open this post in threaded view
|

Re: Webopac Membership Registration - Deactivation

nsid
Hi sonukilskanna,

I think your practice is even better and more appropriate.

Thank you for sharing!
Reply | Threaded
Open this post in threaded view
|

Re: Webopac Membership Registration - Deactivation

sonukilskanna