I wish there was a way to hide my own (+opponent) rating


I would also clarify I don't mean hide my rating from my opponent - I don't mind if they see my rating if they want to see ratings that's fine, I just don't want to routinely see my own rating all the time and see how many points I drop each time I lose

You can always just play unrated games and not think at all about your rating, but yeah true, not many seeks are there for that, huh. Yeah, I think points seriously are pointless, and would be far happier had this site their setup something like BEGINNING I II III INTERMEDIATE I II III ADVANCED I II III .

If it makes any difference I play on phone
There is a thing called “focus mode” on other platforms that hides everything except the board. Unfortunately it is unavailable on mobile, last I checked.

You should be able to use Focus Mode if you use a browser on your mobile rather than the dedicated app. I use Chrome on my phone to access the site and it works well

Estimados programadores, reporto que el sistema se dale solo o la persona cuando se ve perdida lo saca, igualmente hay muchas jugadas que después de jugar sigue corriendo el tiempo. Ahorita con el tema de la competencia de divisiones como es posible que jugadores hagan 2000 puntos en 5 horas

just use this js to remove the rating element in tempormonkey extention.
Got it from chat GPT
// ==UserScript==
// @name Chess.com Remove Tagline
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Removes user tagline rating on Chess.com
// @author Your Name
// @match *://*.chess.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function removeTagline() {
var elements = getElementsByClassName("user-tagline-rating user-tagline-white");
while (elements.length > 0) {
elements[0].parentNode.removeChild(elements[0]);
}
}
// Run the function immediately
removeTagline();
// Also run the function whenever the DOM changes
new MutationObserver(removeTagline).observe(body, { childList: true, subtree: true });
})();