MediaWiki:Common.js: Difference between revisions

From Kshatriya Wiki
mNo edit summary
Tag: Reverted
No edit summary
 
(18 intermediate revisions by the same user not shown)
Line 11: Line 11:
gtag('config', 'G-5MQXEFVQBE');
gtag('config', 'G-5MQXEFVQBE');


///try
// Remove View History tab & Recent Changes link for anonymous users
$(function () {
if (!mw.config.get('wgUserName')) {
    // Only apply for anonymous (not logged-in) users
  $('#ca-history').remove(); // Removes history tab
    if (!mw.config.get('wgUserName')) {
  $('#n-recentchanges').remove(); // Removes recent changes link
        // Hide "View history" tab in Vector 2022
  $('a[title="Special:RecentChanges"]').remove(); // Extra check
        const historyTab = document.querySelector('[data-vector-tab="ca-history"]');
}
        if (historyTab) {
            historyTab.style.display = 'none';
        }


        // Hide all "Recent changes" links (sidebar, top menu, etc.)
//coffee
        document.querySelectorAll('a[title="Special:RecentChanges"]').forEach(el => {
$(document).ready(function () {
            el.style.display = 'none';
  var link = document.createElement('a');
        });
  link.href = "https://www.buymeacoffee.com/rajanyaofficial";
    }
  link.textContent = "SUPPORT OUR WORK";
  link.target = "_blank";
  link.style.position = "fixed";
  link.style.bottom = "20px";
  link.style.right = "20px";
  link.style.background = "#5F7FFF";
  link.style.color = "#fff";
  link.style.padding = "10px 15px";
  link.style.borderRadius = "8px";
  link.style.fontFamily = "Poppins, sans-serif";
  link.style.fontSize = "14px";
  link.style.zIndex = "9999";
  link.style.textDecoration = "none";
  link.style.boxShadow = "0 4px 6px rgba(0,0,0,0.2)";
  document.body.appendChild(link);
});
});

Latest revision as of 13:28, 10 July 2025

/* Any JavaScript here will be loaded for all users on every page load. */
// Google Analytics for GA4 (G-5MQXEFVQBE)
var gtagScript = document.createElement("script");
gtagScript.src = "https://www.googletagmanager.com/gtag/js?id=G-5MQXEFVQBE";
gtagScript.async = true;
document.head.appendChild(gtagScript);

window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-5MQXEFVQBE');

// Remove View History tab & Recent Changes link for anonymous users
if (!mw.config.get('wgUserName')) {
  $('#ca-history').remove(); // Removes history tab
  $('#n-recentchanges').remove(); // Removes recent changes link
  $('a[title="Special:RecentChanges"]').remove(); // Extra check
}

//coffee
$(document).ready(function () {
  var link = document.createElement('a');
  link.href = "https://www.buymeacoffee.com/rajanyaofficial";
  link.textContent = "SUPPORT OUR WORK";
  link.target = "_blank";
  link.style.position = "fixed";
  link.style.bottom = "20px";
  link.style.right = "20px";
  link.style.background = "#5F7FFF";
  link.style.color = "#fff";
  link.style.padding = "10px 15px";
  link.style.borderRadius = "8px";
  link.style.fontFamily = "Poppins, sans-serif";
  link.style.fontSize = "14px";
  link.style.zIndex = "9999";
  link.style.textDecoration = "none";
  link.style.boxShadow = "0 4px 6px rgba(0,0,0,0.2)";
  document.body.appendChild(link);
});