Re: [Koha] Multiple Statements

2014-08-12 Thread Chris Cormack
* Chrispin Simasiku Sitali (libsit...@gmail.com) wrote: Greetings to all, How would I add multiple statements in opacuserjs. e.g. $(document).ready(function(){ $(#auth legend:contains('Log in to your account')).text(Log in to your library account); $(#auth

Re: [Koha] Multiple Statements

2014-08-12 Thread Chrispin Simasiku Sitali
Thanks you very much Chris for coming to my aid. I really appreciate On 11 August 2014 10:51, Chris Cormack chr...@catalyst.net.nz wrote: * Chrispin Simasiku Sitali (libsit...@gmail.com) wrote: Greetings to all, How would I add multiple statements in opacuserjs. e.g.

Re: [Koha] Patron search error

2014-08-12 Thread kamild
Hi, library did you find a solution? I have the same problem when searching patron but in Koha 3.16.02. Koha version: 3.16.02.000 Perl version: 5.010001 OS version: Linux 2.6.32-5-686 Thx Regards Kamil -- View this message in context:

Re: [Koha] Multiple Statements

2014-08-12 Thread Eric Bégin
You are on the right track Chrispin ;) Do not put the $(document).ready and this should work. Can you try the following : $(#auth legend:contains('Log in to your account')).text(Log in to your library account); $(#auth label[for='userid']).html(Library Card Number:); $(#auth

Re: [Koha] Multiple Statements

2014-08-12 Thread Mason James
On 2014-08-10, at 8:07 PM, Chrispin Simasiku Sitali wrote: Greetings to all, How would I add multiple statements in opacuserjs. e.g. $(document).ready(function(){ $(#auth legend:contains('Log in to your account')).text(Log in to your library account); $(#auth

Re: [Koha] Jquery

2014-08-12 Thread Owen Leonard
On Fri, Aug 8, 2014 at 10:18 AM, Chrispin Simasiku Sitali libsit...@gmail.com wrote: Greetings to all, How would I add multiple statements in opacuserjs. e.g. $(document).ready(function(){ $(#auth legend:contains('Log in to your account')).text(Log in to your library account); $(#auth

Re: [Koha] Jquery

2014-08-12 Thread Owen Leonard
Sorry to have sent an empty reply! Clumsy fingers this morning. How would I add multiple statements in opacuserjs. e.g. You can. You can do multiple document.ready() blocks if you want, or combine them: $(document).ready(function(){ // All the events which will run when the page is ready

Re: [Koha] Multiple Statements

2014-08-12 Thread Olu Adara
Hello Chrispin, How are you doing? On Aug 10, 2014, at 4:07 AM, Chrispin Simasiku Sitali libsit...@gmail.com wrote: How would I add multiple statements in opacuserjs. e.g. $(document).ready(function(){ $(#auth legend:contains('Log in to your account')).text(Log in to your library

[Koha] Invalid SIP users in koha

2014-08-12 Thread vishal patil
Dear All, I am configuring the Koha for 3M RFID, but my SIP users are not working, showing invalid id and password even if the password is right. Koha version 3.02 OS = OpenSUSE 12.2 SIP 2.0 I have done following changes in my SIPconfig.xml service port=8023/tcp transport=telnet

Re: [Koha] Multiple Statements

2014-08-12 Thread Nicholas van Rheede van Oudtshoorn
Basically, you need one opening line: $(document).ready(function(){ And one closing line: }); Then just copy and paste the contents from each statement in between. For example: $(document).ready(function(){ $(#auth legend:contains('Log in to your account')).text(Log in to your library

[Koha] Opacheader syspref: Custom header image not displaying on all pages

2014-08-12 Thread Craig Butosi
Dear Collective Wisdom, First time posting to KOHA listserv. I hope there's a kind soul out there who can help me with an HTML-related issue in Global Preferences--OPAC. I'm running a test setup of Koha, and have been tinkering with the administrative settings. Everything has been going great

[Koha] 2014 Koha NA Users Group Meeting Summary

2014-08-12 Thread Heather Braum (NEKLS)
I attended the 2014 North American Koha Users Group meeting in beautiful Wenatchee, WA last week. Most of the week's notes ended up my hands, so I get to send out the email summarizing the week, I guess! :) Attendees spent 2 days discussing various parts of Koha, as well as getting this North

[Koha] After upgrading to 3.16 only get Apache It Works page

2014-08-12 Thread Arun Kumar
You need to add OPAC to Apache for opening it on port 80 you'll find it in: /etc/apache2/sites-enabled open the configuration file koha.conf with editor that you are comfortable vim koha.conf add the following line under opac virtual host port 80 # OPAC VirtualHost *:80 Include

[Koha] Temporary shelving location

2014-08-12 Thread Jorge de Cardenas
Is anybody using temporary shelving locations? What we would like to happen is that an item has a permanent location location set. Normally they would be the same, but occasionally items are pulled and displayed e.g. a holiday display table with holiday books, dvds, etc. The location would be

Re: [Koha] Multiple Statements

2014-08-12 Thread Liz Rea
Hi Chrispin, Like so: $(document).ready(function(){ $(#auth legend:contains('Log in to your account')).text(Log in to your library account); $(#auth label[for='userid']).html(Library Card Number:); $(#auth label[for='password']).html(PIN:); var holdlinks = $(a:contains('Place

Re: [Koha] possible bug with stage MARC import

2014-08-12 Thread Steve Sowder
I can't get past 0% when more than about 500 records being loaded. Sometimes even as few as 200 records it is stuck at 0%. (Even after waiting 24 hours.) So, I open another instance and look a Staged record Management. It tells me that the load is Staged so I click on the file name and then

Re: [Koha] After upgrading to 3.16 only get Apache It Works page

2014-08-12 Thread Doug Dearden
Hi Marty, This probably has something to do with your Apache config. First, just because it might work do sudo apache2ctl restart . That will restart the apache server and load all the configs. If that doesn't fix it, then look at /etc/apache2/sites-enabled . You should have a symlink

Re: [Koha] Multiple Statements

2014-08-12 Thread Fridolin SOMERS
You can just write all statements in opacuserjs, no problem. Yet it is better to have only one $(document).ready() call to manage the oder of execution. Best regards, Le 10/08/2014 10:07, Chrispin Simasiku Sitali a écrit : Greetings to all, How would I add multiple statements in

Re: [Koha] Opacheader syspref: Custom header image not displaying on all pages

2014-08-12 Thread Olu Adara
Hi Craig, On Aug 12, 2014, at 10:37 AM, Craig Butosi craig.but...@rcmusic.ca wrote: Snip Image save location: /usr/share/koha/opac/htdocs/imageairBANNER.jpg Opacheader syspref code: !---Header Image Begins-- img src=imageairBANNER.jpg usemap=#websitemap Try putting a / in