Community Central
Community Central
No edit summary
No edit summary
Line 12: Line 12:
 
:: Here is an example script that will change the text of "Wiki Activity" to "Activity":
 
:: Here is an example script that will change the text of "Wiki Activity" to "Activity":
   
<div style="margin-left: 48px;">
+
<div style="margin-left: 48px">
 
<source lang="javascript">
 
<source lang="javascript">
 
$(document).ready(function() {
 
$(document).ready(function() {
Line 23: Line 23:
   
 
:::{{ec}}According to [[Forum:New wiki navigation: Editing "On the Wiki"|here]], modifying the menu with JS is a violation of Wikia's ToU. - [[User:Tjcool007|Tjcool007]] <sup>''([[User talk:Tjcool007|Talk]])''</sup> 20:56, July 22, 2012 (UTC)
 
:::{{ec}}According to [[Forum:New wiki navigation: Editing "On the Wiki"|here]], modifying the menu with JS is a violation of Wikia's ToU. - [[User:Tjcool007|Tjcool007]] <sup>''([[User talk:Tjcool007|Talk]])''</sup> 20:56, July 22, 2012 (UTC)
:::: So you can't even add links to the menu? {{subst:User:MateyY/Sig}} 20:59, July 22, 2012 (UTC)
+
:::: So you can't even add links to the menu? —&nbsp;[[User:MateyY|MateyY]]&nbsp;&bull;&nbsp;<small>([[Message Wall:MateyY|wall]])</small> 20:59, July 22, 2012 (UTC)

Revision as of 21:02, 22 July 2012

Forums: Index Support Requests How to add Chat to "On the Wiki" Navigation and is it possible to edit "On the Wiki" Navigation?
Fandom's forums are a place for the community to help other members.
To contact staff directly or to report bugs, please use Special:Contact.
Archive
Note: This topic has been unedited for 4288 days. It is considered archived - the discussion is over. Information in this thread may be out of date. Do not add to unless it really needs a response.


I've already enable the chat feature, but how do I add a chat link to the "On the Wiki" Navigation? I seen lots of Wiki that have that. Also is it possible to edit "On the Wiki" Navigation? Not to delete the whole Navigation, but to rename some stuff and add some stuff to it? —This unsigned comment is by ChaosGTO (wallcontribs). Please sign your comments by adding "~~~~" in the source editor.

Hi, the chat link should be added automatically if Chat is enabled. If it doesn't you may need to report it as a bug. As for editing that tab, you can't. It can only be edited by the wikia staff globally. - Tjcool007 (Talk) 20:09, July 22, 2012 (UTC)
Actually, you can use JavaScript to do so.


MateyY (talkcontribs) 20:43, July 22, 2012 (UTC)

Here is an example script that will change the text of "Wiki Activity" to "Activity":
$(document).ready(function() {
	$('a.subnav-2a[href="/wiki/Special:WikiActivity"]').html("Activity");
});


MateyY (talkcontribs) 20:51, July 22, 2012 (UTC)

(edit conflict)

According to here, modifying the menu with JS is a violation of Wikia's ToU. - Tjcool007 (Talk) 20:56, July 22, 2012 (UTC)

So you can't even add links to the menu? — MateyY • (wall) 20:59, July 22, 2012 (UTC)