Can You edit special pages
63,405pages on
this wiki
this wiki
Forum page
Forums: Index → Support Requests → Can You edit special pages
Wikia's forums are a place for the community to help other members.
To contact staff directly or to report bugs, please use Special:Contact.
To contact staff directly or to report bugs, please use Special:Contact.
Note: This topic has been unedited for 620 days. It is considered archived - the discussion is over. Do not add to unless it really needs a response.
Is there a way to change special pages?Unstubber 22:02, August 30, 2010 (UTC)
- Not really, some special pages allow you to change text on them through system messages, and you can do some hackish stuff with JavaScript, but it really depends on what specifically you're trying to change. --Pcj (T•C) 22:09, August 30, 2010 (UTC)
- A patron in #wikia showed me this:
$(function() {
if ( wgNamespaceNumber === -1 && wgCanonicalSpecialPageName === "Specialpages" ) $("#contentSub").after("Hello world!");
});
Thought I'd include this. If you want you can "prepend" text or a link in special pages. My thanks goes out to pcj who pretty much made it. Replace link and text. Duskey(talk) 22:17, September 2, 2010 (UTC)
$(function() {
if ( wgNamespaceNumber === -1 && wgCanonicalSpecialPageName === "Specialpages" ) $("#siteSub").after('<br /><br /><a href="link">text</a>');
});