hello, May you help me of how i can hide/chancge "Koha 24.05" which allways appear every page on staff dashboard.
@centralkansaslibrarysystem16105 ай бұрын
If you want to hide the "koha_version" link at the bottom of pages in the staff client, inserting this jQuery into the IntranetUserJS should do the trick: $(document).ready(function(){ $("#koha_version").hide(); }); If you want to change what the text says, and where the link goes, here's how you can do that: $(document).ready(function(){ $("#koha_version a").text("New Link Text").attr("href", "new-url.com"); });
@mcdaffmasula52295 ай бұрын
@@centralkansaslibrarysystem1610 Thank you so much, it has worked perfect 🙏
@josephotieno59785 ай бұрын
Can I change the new version 24 too look like the older version before upgrade
@centralkansaslibrarysystem16105 ай бұрын
Hi Joseph, there's not an easy way to do that since it's integrated into all the newer upgrades. You could potentially restyle everything in IntranetUserCSS, but that would be a LOT of work.
@josephotieno59785 ай бұрын
@@centralkansaslibrarysystem1610 thanks
@GetrudeMponda-d1t5 ай бұрын
Hello, Please may you help me, How can i remove/change the LINK of KOHA that is found on top of Log In screen of Staff Log In dashboard where "koha-logo.gif" is displayed, when i click on my Koha-logo.gif it takes me to the official site of Koha community, I am also failing to remove this words "Note: Your selection may be overridden if your current IP matches a specified IP for a branch in Koha" it is displayed on the same screen but on the middle near log In button. I am using Koha version 24.05
@centralkansaslibrarysystem16105 ай бұрын
I don't know about the IP warning, I haven't seen that before. If you want to change the link to the Koha community on the log in page, you can use this jQuery in the IntranetUserJS (make modifications to the link): document.addEventListener("DOMContentLoaded", function() { // Check if we are on the #main_auth page if (document.getElementById("main_auth")) { // Select the element var h1Element = document.querySelector("#main_auth h1"); // Check if the element exists if (h1Element) { // Select the element inside the var linkElement = h1Element.querySelector("a"); // Change the href attribute of the element if (linkElement) { linkElement.href = "new-link.com"; // Replace with the new link } } } });