Re: [Koha] Hide MARC View separator

2017-09-17 Thread Mark Alexander
Excerpts from | dalmeida |'s message of 2017-09-16 18:57:03 +0100:
> Does anyone know how to hide MARC View separator on book Details page? I'd
> like to have only Normal View and ISBD View.

I used the following as a hint:

  
https://wiki.koha-community.org/wiki/JQuery_Library#Hide_Marc_.26_ISBD_view_from_OPAC

which recommended using:

  $(".view a:contains('MARC view')").hide();

But using Firefox's "Inspect Element" feature, I saw that the "MARC view" tab
has an ID of "MARCview".  So I was able to simplify the Javascript in
OPACUserJS preference to the following:

  $(document).ready(function(){
$("#MARCview").hide();
  });

Note: I tested this only on 17.05.
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Changing user password

2017-09-17 Thread Eric Bégin

Hey Luis,

If what you want is to force the user to change its password next time 
he logs in, as far as I know, this is not currently supported by Koha.


Cheers,

Eric Bégin
Solutions inLibro inc.

On 2017-09-15 04:22 PM, Luis Moises Rojas wrote:

Hello everybody,

We are creating user with generic password,
Does koha can allow user to change, inmediataly the user log in, to change
the password?

Thanks



___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha