customizing Watchlists

There are a number of ways in which you can customize your watchlist.

This can make watching pages for changes easier.

Using the Preferences page

Watchlist customization begins with the options provided by the Watchlist tab on the Preferences page. These include "Expand watchlist to...," which you can select in order to see all changes to a page rather than only the last one (which may have been an automated bot edit, or marked as minor, i.e., something less significant than, for example, the edit just before it – or, depending on other preference settings, may usually be hidden). Another option is "Group changes by page..." on the "Recent changes" tab, which, for example, enables changes to the same page on the same day to be grouped together (useful if you have a large number of frequently changing pages on your watchlist).

Twinkle has the option to automatically add articles it's used on to your watchlist. To change this setting, go to Wiki: Twinkle/Preferences

Styling of recently updated pages

Although it is currently disabled by default, a formatting feature has been made available that highlights changes in your watchlist that you haven't seen yet.

To activate this feature with its default bold styling, enable the following item in your Preferences:

  • Preferences → Gadgets → Display pages on your watchlist that have changed since your last visit in bold.

Enable manually

If you want to enable this feature manually using code, instead of using the gadget described above, add this in your common.css page:

.updatedmarker {     background-color: transparent;     color: #006400; } .mw-special-Watchlist .mw-changeslist-line-watched .mw-title {     font-weight: bold; } .mw-special-Watchlist #mw-watchlist-resetbutton {     display: block; } 

Alternative styling

customizing Watchlists 
Alternative styling with border-bottom:1px dotted #999;

To activate the feature with an alternate style, you can instead add one of the following to your common.css page.

    Use dotted underline
    black
.mw-changeslist-line-watched .mw-title {     font-weight: normal;     border-bottom: 1px dotted #000; } .mw-special-Watchlist #mw-watchlist-resetbutton {     display: block; } 
    or grey
.mw-changeslist-line-watched .mw-title {     font-weight: normal;     border-bottom: 1px dotted #999; } .mw-special-Watchlist #mw-watchlist-resetbutton {     display: block; } 


    Use italic text
.mw-changeslist-line-watched .mw-title {     font-weight: normal;     font-style: italic; } .mw-special-Watchlist #mw-watchlist-resetbutton {     display: block; } 


    Annotation with small green stars
.updatedmarker {     background-color: transparent;     color: #006400; } .mw-changeslist-line-watched .mw-title {     font-weight: normal;     background: url(//upload.wikimedia.org/wikipedia/commons/thumb/a/ac/Pentagram_dis.svg/13px-Pentagram_dis.svg.png) no-repeat left;     /* @noflip */     padding-left: 16px; } .mw-special-Watchlist #mw-watchlist-resetbutton {     display: block; } 


    Annotation of unwatched edits with green background (like on Wiki Commons)
.updatedmarker {     background-color: Lime;     color: #006400; } 

Disabling

If the feature is ever enabled site-wide, by default, you may use one of the following methods, which will disable the formatting, the related Mark all pages as visited button, and the green update notices on History pages. Only one of the four methods described below is necessary. They all basically do the same thing.

importStylesheet('User:Equazcion/RemoveRecentUpdateMarkers.css'); 
@import url('//en.wikipedia.org/wiki/User:Equazcion/RemoveRecentUpdateMarkers.css?action=raw&ctype=text/css'); 
importScript('User:Equazcion/RemoveMarkAll.js'); 
.mw-changeslist-line-watched .mw-title {     font-weight: normal; } #mw-watchlist-resetbutton, .updatedmarker {     display: none; } 

Highlight specific pages

As an alternative or in addition to using the watchlist feature, you can also define a user style for links to selected pages. In your common.css page put a list of lines like:

a[title="pagename"] {     color: white;     background: red;     font-size: 150%; } 

This may not work in all browsers, however.

On the (Enhanced) Recent Changes page it works like the bolding feature mentioned above, but it is more versatile, e.g. allowing extra emphasis on pages one is very interested in, or different styles for different categories of interesting pages. Furthermore, it also works on user contributions pages, and on regular pages (also for piped links, but not for indirect links through a redirect). It also applies, less usefully, for the section editing links in the page itself.

To highlight links to the given page also from other websites, including interlanguage links, use instead of the above:

a[href="full URL"] {     ... } 

Note that the full URL is needed, even to highlight links from the same project, even though the HTML code uses the relative URL /wiki/pagename.

Removing or modifying log entries

Add to your common.css page the lines you want to remove from the log entries; for modifying the appearance the display:none; has to be replaced with a relevant CSS code (like from the "modified notification"-section above):

/* For all */ .mw-special-Watchlist table[class*="mw-changeslist-log"] {     display: none; }  /* For deletion entries */ .mw-special-Watchlist table[class*="mw-changeslist-log-del"] {     display: none; }  /* For the user creation log */ .mw-special-Watchlist table[class*="mw-changeslist-log-newuser"] {     display: none; }  /* For the move log */ .mw-special-Watchlist table[class*="mw-changeslist-log-move"] {     display: none; } 

CSS method

Add to your common.css page the following line to remove the [rollback] link shown after every line:

.mw-special-Watchlist .mw-rollback-link {     display: none; } 

Or to remove all rollback links, including from history pages:

.mw-rollback-link {     display: none; } 

User scripts

The following user scripts allow for more flexibility than the CSS method:

JavaScript (jquery) method

You can also use custom JavaScript to alter the links. For example, to completely remove them from your page, add the following to your common.js page:

    $('span.mw-rollback-link').remove(); 

If you want to make sure it only removes the links from certain pages, you can wrap it in a conditional statement: Start the conditional check with if ( and end it with ){
Then select the pages you want it removed from out of the list below separating each with a conditional or ||

  • mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist'
  • mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Recentchanges'
  • mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Contributions'

Next, the above $('span.mw-rollback-link').remove(); goes in and make SURE that you close the conditional statement with } at the end!!!

    An example that would remove it from Watchlist and Recentchanges but leave it on Contributions would look like:
if(mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist' || mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Recentchanges'){     $('span.mw-rollback-link').remove(); } 

Administrators can completely remove block links from their page by adding the following to your common.js page:

    $('span.mw-usertoollinks').each(function () {         var $elem = $(this);         $elem.children('a:last').replaceWith("-");         $elem.html($elem.html().replace(" | -", ""));     }); 

If you want to make sure it only removes the links from certain pages, you can wrap it in a conditional statement:
Start the conditional check with if ( and end it with ){
Then select the pages you want it removed from out of the list below separating each with a conditional or ||

  • mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Watchlist'
  • mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Recentchanges'
  • mw.config.get( 'wgCanonicalSpecialPageName' ) === 'Contributions'

If using more than one of these, you can shorthand it as in the example below
Next, the above code goes in and make SURE that you close the conditional statement with } at the end!!!

    An example that would remove it from all three pages could look like:
var wgCSPN = mw.config.get( 'wgCanonicalSpecialPageName' ); if(wgCSPN === 'Watchlist' || wgCSPN === 'Recentchanges' || wgCSPN === 'Contributions'){     $('span.mw-usertoollinks').each(function () {         var $elem = $(this);         $elem.children('a:last').replaceWith("-");         $elem.html($elem.html().replace(" | -", ""));     }); } 

Hide pages in your watchlist

It is possible to hide pages in your watchlist using CSS, via your common.css page. This makes it possible, for example, to watch a page without the associated talk page appearing in your watchlist. See Wiki: Hide Pages in Watchlist for instructions.

Scripts

There are many user scripts written in JavaScript available for greater customization of Watchlists, for example:

  • Smart Watchlist - A script that offers several watchlist customization options.
  • User:Js/watchlist - adding unwatching links to the watchlist; different sorting, expand/collapse all hidden edit (if using "Enhanced Recent Changes")

Notes

Tags:

customizing Watchlists Using the Preferences pagecustomizing Watchlists Styling of recently updated pagescustomizing Watchlists Highlight specific pagescustomizing Watchlists Removing or modifying log entriescustomizing Watchlists Remove or modify the [rollback] linkcustomizing Watchlists Remove | block linkscustomizing Watchlists Hide pages in your watchlistcustomizing Watchlists Scriptscustomizing WatchlistsHelp:Watchlist

🔥 Trending searches on Wiki English:

Richard Armitage (actor)Restrictions on TikTok in the United States2024 World Snooker ChampionshipMinecraftPeriodic tableBharatiya Janata Party2024 Premier League DartsNapoleonEminemElection Commission of IndiaAshlyn HarrisCivil War (film)Val KilmerM. Night ShyamalanSaint GeorgeJake Paul vs. Mike TysonLionel MessiShōgun (2024 miniseries)XXXTentacionEarthCAF Champions LeagueHTTP 404LinkedInHybe CorporationBarry KeoghanMonica LewinskyGlass (2019 film)2026 FIFA World CupCarlo AncelottiTom BradySydney SweeneyChop RobinsonKyle MacLachlanStar WarsChad Michael MurrayRobert DurstSunny LeoneGoogle ScholarCrew (film)MuhammadChicago BearsMalik NabersAadhaarNational Democratic AllianceKristin ChenowethWorld Wide WebLisa Marie PresleyList of James Bond filmsTokugawa IeyasuLady Gaga2024 Indian general election in BiharIndian National CongressMia KhalifaFacebookStephen HawkingImmaculate (2024 film)CanadaWordleDarién Gap2024 Indian general election in Uttar PradeshMain PageKYURJerry SeinfeldDarwin BlanchBangalore Rural Lok Sabha constituencyBilly JoelLisbeth SalanderAmerican football positionsSurvivor 46Sexual intercourseAmar Singh ChamkilaArticle 370 (film)YandexGoogleRafael NadalDavid PeckerTez JohnsonOpenAIDange (film)🡆 More