Hi Bev<br><br>Thanks for sharing this script, I&#39;ve been wondering abut how to sort this and it&#39;s worked really well here on our install :-)<br><br>I&#39;ve found a couple of examples of the word &#39;Cart&#39; remaining after I&#39;ve added this to the opac syspref though and I&#39;m not sure how to get to them to convert to our chosen label.  Would you be able to help?  <br>
<br>They are:<br><br>  in the drop down list &#39;Add to:&#39; at the top of the brief results list <a href="http://koha/cgi-bin/koha/opac-search.pl">http://koha/cgi-bin/koha/opac-search.pl</a><br><br>  the header for the pop up <a href="http://koha/cgi-bin/koha/opac-basket.pl">http://koha/cgi-bin/koha/opac-basket.pl</a><br>
<br>Hopefully,<br>Jos<br><br><br><blockquote style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;" class="gmail_quote">From: Church, Beverly &lt;<a target="_top" href="http://gmane.org/get-address.php?address=bchurch%2ddH%2fyH1cuEJxBDgjK7y7TUQ%40public.gmane.org" rel="nofollow">bchurch@...</a>&gt;<br>

Subject: <a target="_top" rel="nofollow" href="http://news.gmane.org/find-root.php?message_id=%3cAANLkTim7JUMnpoRbKepSiofKn%5fMUkoPAUv%5fKLCqHiMuS%40mail.gmail.com%3e">Re: cart button - change or remove</a><br>
Newsgroups: <a href="http://news.gmane.org/gmane.comp.misc.koha" target="_top">gmane.comp.misc.koha</a><br>
Date: 2010-11-25 13:42:47 GMT
 (1 week, 23 hours and 55 minutes ago)<br><p>
</p>Hi Elaine,<br><br>Here&#39;s a script I found which lets you use 
the system preference &quot;opacuserjs&quot; to rename the cart function. This 
script below changes &quot;Cart&quot; to &quot;Book Bag&quot; but you can use choose any 
other label:<br><br>$(&quot;a.addtocart&quot;).text(&#39;Add to Book Bag&#39;);<br><br>// redefining messages to use &quot;book bag&quot;<br>MSG_BASKET_EMPTY = _(&quot;Your book bag is currently empty&quot;);<br>MSG_RECORD_IN_BASKET = _(&quot;This item is already in your book bag&quot;);<br>


MSG_RECORD_ADDED = _(&quot;This item has been added to your book bag&quot;);<br>MSG_NRECORDS_ADDED = _(&quot; item(s) added to your book bag&quot;);<br>MSG_NRECORDS_IN_BASKET = _(&quot;already in your book bag&quot;);<br>


MSG_NO_RECORD_ADDED = _(&quot;No item was added to your book bag&quot;);<br>MSG_CONFIRM_DEL_BASKET = _(&quot;Are you sure you want to empty your book bag?&quot;);<br><br>  $(&quot;.container &gt; h1:contains(&#39;Your Cart&#39;)&quot;).html(&quot;Your Book Bag&quot;);<br>


  $(&quot;span.addto&quot;).click( function(){<br>     $(&quot;select#addto &gt; option:contains(&#39;Cart&#39;)&quot;).html(&quot;Book Bag&quot;);<br>  });<br><br>top_button_convert = function() {<br>  basketcount = $(&quot;#basketcount&quot;).html();<br>


  $(&quot;#cartmenulink&quot;).html(<br>&#39;&lt;i&gt;&lt;/i&gt;&lt;span&gt;&lt;i&gt;&lt;/i&gt;&lt;span&gt;&lt;/span&gt;&lt;img
 src=&quot;/opac-tmpl/prog/images/cart.gif&quot; width=&quot;14&quot; height=&quot;14&quot; alt=&quot;&quot; 
border=&quot;0&quot; /&gt; Book Bag&lt;span id=&quot;basketcount&quot;&gt;&#39; + basketcount + 
&#39;&lt;/span&gt;&lt;/span&gt;&#39;<br>

  );<br>};<br>  top_button_convert(); // run once <br>  $(&quot;a.addtocart&quot;).click( function(){<br>     top_button_convert();  // run on given clicks<br>  });<br> <br><br>You need to enter the above script between the following beginning and opening lines:<br>
<br><span>$(document).ready(function(){</span><br><br><br><span>});</span><span></span><br><span></span></blockquote>