The default text in the Confluence Search Box is : Search Confluence.
How can I change this text?
I'm using the Documentation Theme.
Hello,
and javascript again iss your friend.
Insert the following code in the Confleunce Administration > Custom HTML > "At the end of the BODY" - part
<script type="text/javascript"> AJS.toInit(function ($) { var search = jQuery(".quick-search-query"); search.each(function() { searchBox = jQuery(this); searchBox.data("quicksearch", { placeholder: "My Test Value", placeholded: true }); searchBox.trigger("focus"); searchBox.trigger("blur"); }); }); </script>
The Placeholder Vlaue "My Test Value" should be set. Testet it with a Confluence 4.0.4. Hope that works for you.
Thanks, Sandro - this script works great in my version of Confluence!
Sorry about the duplicate questions - I wasn't aware that the first one was accepted. Then this weekend I began receiving answers for both. And different answers at that! But yours was the simplest and it worked.
Thanks again,
Dan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Any chance this will work with Confluence 6.8.2?
Thanks,
V
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think it might be easier to follow the Confluence documentation regarding changes to interface text:
http://confluence.atlassian.com/display/DOC/Modify+Confluence+Interface+Text
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Stanislav,
Thanks for your reply. I got a lot of great answesr from everyone, but for me, Sandro's was the easiest to apply. I didn't have to leave the UI - just plug in the script and it's done.
Dan
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
removed to the original question https://answers.atlassian.com/questions/18196/can-i-change-the-words-search-confluence-in-the-confluence-search-field/20587
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.