Tim Legler cannot stand the box score change on the ESPN’s homepage
I stand with Tim here. It’s horrendous.
So bad! I thought I was tripping at first, I had just seen the old format and it switched the same day! I think the season was a couple days old when they switched
I felt like throwing my phone across the room constantly hitting “all stats” button just to see fucking field goal %. They need to go back
I saw this rant watching the episode earlier today and I agree so hard with Legs. I fucking hate the order of the stats in the updated site. makes/attempts should be next to points.
Maybe I’m in the minority, but the ESPN site has been bad for stats and box scores for years now.
Old ESPN was fine, that was like 2010 (back when they had their old message boards). Things loaded quicker, everything was more organized. Then they made a major overhaul to their website and everything felt clunky.
That’s most of the web now. Like there’s a reason I still use old reddit.
They can pry old reddit from my cold dead hands.
Once in a while reddit switches me to new and I’m always afraid they finally killed old reddit until I find it in the settings and turn it back on.
you can just replace “www.” with “old.” to make it quicker, without going through settings.
I’m aware, the problem is subreddits that include links that are hard links take me to new version and I have to manually fix the url to old
The box score didn;t change when they did all that, the UI became mildly larger. But overall it stayed the same.
Play by play and everything else changed pretty hard. I still hate the new PBP.
FGM/FGA is how I judge a player’s performance. Now I have to find that dumbass slider to turn on all stats and then horizontally scroll to find it.
It’s like how grocery stores put milk in the back so you have to walk through all the isles to get to it and maybe you’ll find something to buy on your way
They have to keep dairy under constant refrigeration, and restock from that area. There’s literally no other area in the store to do that other than in the back. There are many other reasons for store layouts, but dairy cannot be left in room temp at all.
That’s not really why they do it. Cold storage is in the back and it’s safer to have that stocked directly from the cold storage.
Maybe but I took a marketing course that confirmed that they do put essentially further back in order to get you to shop more. They also put the most expensive things at eye level on the shelves cause that’s where our eyes naturally gravitate. Fruits and vegetables at the front of the store and usually to the right because they’re colorful and smell good and make people want to stay in the store. Aisles are intentionally narrow so that when you get stuck you have to look at items on the shelves. It’s actually really fascinating how so much of our shopping habits are directly shaped by ad men and marketers
I worked at a pretty well known retailer and you’re both correct. Refrigerated foods always go at the back to minimize spoilage, but most other things are organized to maximize impulse buying.
I went to Central Market in Houston today and they have the store laid out like an Ikea so you have to wind through and hit every department. Takes an hour to get through there. Getting food is not my hobby.
Shout out Piggly Wiggly for basically inventing the modern grocery store, for better or worse
annoying as hell especially on the mobile version/app for Fantasy
Should be ‘shooting performance’ and only be a part of a players overall performance. A player can have a terrible shooting night but can have a positive impact on their team’s win.
Ngl I’m so happy that someone has actually come out and said this, I thought I was going crazy.
Having PTS/REB/AST/STL/BLK in that order is kind of nice, but not at the expense of having to expand the table just to see FG/FGA
And the crazy part is that I’m almost positive the change is so gamblers can see their prop bet stuff more prominently. There is no reason for all counting stats to be displayed at the expense of FG and 3pt percentages other than that.
Right? Not a whole lot of prop bets out there for efficiency stats - just counting totals
I’m not too deep in the weeds on it but as far as I have seen there aren’t any prop bets on efficiency available. It feeds a horrible way to look at the sport if all you care about is if a player hit 23 points or not while disregarding his efficiency or the way he got there
Like Cade had that game where he put up 48 a couple of days ago and I just thought “oh my goodness, that’s a career game right there” and then I scroll over and see like 46 shot attempts and go “ah, that’s why”
Somehow I didn’t think oh this but you’re probably right. It’s been driving me crazy.
A lot of times I attribute this stuff to updates for the sake of updates because employees need stuff to do.
But really this is the only explanation that makes sense to me
I’m totally in the minority here, but look at every player performance thread here and it will be pts/rebs/ast/(stl or blk if notable) and then the efficiency if notable. Seems natural that the box score will have the same order
Finally someone in a prominent place complaining!
It’s not even like it’s bad, but after like what would nearly be 2 decades of looking at the ESPN box score. The change is hard to get used to.
Attempts and points being so far apart hurts my brain. Plus I feel like 3pt% and especially FT% are pointless stats to include.
Also why did they make this change like 7 games into the season and not in the pre-season?
They 100% did it for gambling.
This might sound strange but Yahoo has the best box scores
Been looking at Yahoo since the days of Skeets, Boom Tho.
Wish Boom Tho got some run in the NBA. Still love his writing and art
Yahoo is low key slept on. Gets a bad rep for whatever reason lol
There was a time not that long ago when Yahoo was legit the best site for sports news. But then basically all their people went to ESPN or The Athletic.
And their average stats tend to update quicker than ESPN, BBRef, etc. for whatever reason.
I’ve been using the Yahoo sports app on my phone for like 5 years now and it’s great. They also recently added being able to sort categories in the box score and it’s pretty nice
I haven’t used the app. I’m going to check it out now, thanks.
japanese yahoo sports is the best in the world
I stopped using Yahoo Sports when they incorrectly showed the final score to game 4 in the Stanley Cup Finals this year.
I keep looking at the wrong columns because I’m so used to the old one. Also they keep switching the gamecast, box score, and highlight positions when the game ends and I somehow always click the wrong one.
Agree!
Tim is all of us.
On a related note, it’s interesting that Adam Mares, a Nuggets reporter/blogger and Legler, a national media figure, seem to be talking more frequently. I wonder why.
This is year three of their podcast
We don’t need the percentages either like come on this is built for mouth breathers. I don’t need a whole column showing me 1⁄5 is 20%
By Cavs fans For Cavs fans
The reason I use real
What I want and nothing else
gemini and chapgpt (both) helped me write a tampermonkey script that reorders the box score to the old style. it got complicated because of the different ways you can navigate to the box score within the site.
// ==UserScript== // @name ESPN NBA Box Score Custom Order & Hidden Columns // @namespace http://tampermonkey.net/ // @version 1.3 // @description Reorders and hides Box Score Columns // @match https://www.espn.com/nba/* // @grant none // @run-at document-idle // ==/UserScript== (function() { 'use strict'; const BOX_SCORE_TABLE_SELECTOR = 'table.Table.Table--align-right'; const NEW_ORDER_INDICES = [0, 9, 11, 13, 2, 3, 4, 5, 6, 7, 8, 15, 16, 1]; let observer = null; // --- Column reorder function --- function reorderTableColumns(table) { if (!table || table.dataset.reordered === "true") return; const rows = table.querySelectorAll('thead tr, tbody tr'); rows.forEach(row => { const cells = Array.from(row.querySelectorAll('th, td')); const newOrderCells = []; NEW_ORDER_INDICES.forEach(newIndex => { if (cells[newIndex]) newOrderCells.push(cells[newIndex]); }); cells.forEach(cell => cell.remove()); newOrderCells.forEach(cell => row.appendChild(cell)); }); table.dataset.reordered = "true"; } // --- Main logic for boxscore pages --- function runScript() { // Only act if the URL really is a boxscore page if (!location.pathname.includes("/nba/boxscore/")) { if (observer) observer.disconnect(); return; } if (!observer) { observer = new MutationObserver(() => { const tables = document.querySelectorAll(BOX_SCORE_TABLE_SELECTOR); tables.forEach(reorderTableColumns); }); } // Do an immediate pass const tables = document.querySelectorAll(BOX_SCORE_TABLE_SELECTOR); tables.forEach(reorderTableColumns); // Watch for dynamic table reloads observer.observe(document.body, { childList: true, subtree: true }); } // --- Watch for SPA-style URL changes --- function observeUrlChanges(callback) { const pushState = history.pushState; const replaceState = history.replaceState; function onUrlChange() { callback(); } history.pushState = function(...args) { pushState.apply(this, args); onUrlChange(); }; history.replaceState = function(...args) { replaceState.apply(this, args); onUrlChange(); }; window.addEventListener('popstate', onUrlChange); } // --- Kick everything off --- observeUrlChanges(runScript); runScript(); // initial run })();
I don’t claim to understand how it works, so please use at your own risk and don’t ask me for help if this doesn’t work for you.
Dude that is awesome. Thank you.
Looks like it was developed for aesthetic and not functionality. ESPN is literally going out of its way to fuck up every single aspect of their company.
Tim leglar is the goat
Feel the same way. I’ve been going to nba.com . I really like it.
When they release Box Score v3 it’s gonna blow your socks off. For only $3.99 a week you can reorganize columns how you like and it’ll save to your Meta account (mandatory)
I noticed it too. It’s annoying.
https://plaintextsports.com/nba/
You’re welcome
marv_albert_YES.wav
Why fix something wen it didn’t need to be fixed? Stupid ESPN 🤬
At least they finally foxed the contrast issues with the Game Trends graph on the ESPN app.
I don’t trust ESPN for anything factual ever!
Damn. Zach Lowe really let himself go.
The “real” app is great if you ignore the absolute degeneracy of gambling culture in the comments
He’s right and I feel better now because I thought I was going crazy and it was user error
no sofascore in the states?
Sofascore is shit for NBA.
Cant stand it either. Always changing shit
THANK YOU
Its so unnecessary
I too hate it, but when I first realized they changed it i was like “like that’s really annoying”. And didn’t think anything of it.
But hearing Legs rant on this made me happy that I wasn’t alone in thinking that haha. He also said he’d try to use his influence to try and change it back. Legs will be GOATED in this sub if he accomplishes that.
I hate how it always takes me to the app now too
100% agree
💯 100% FACT!!!
The app one sucks now too
What I wanted: replace FGM/FGA attempted with 2PM/2PA.
What I’d have accepted: a separate column for TS%.
What I got: separate columns for FG%, 3P%, and FT%, right next to the actual fractions.
(I had to check myself and ask if I was just objecting to change because it’s change. My conclusion: that’s part of it, but also, the new box score is more cumbersome, and it’s bizarre how points are so far from the shooting splits that I have to scroll back and forth instead of seeing both at the same time. It’s just not worth the questionable convenience of having the fractions converted into percentages.)
one of the few things I agree with him on
Basketball reference or NBA.com
Not to mention the game logs are setup differently depending on what sport you’re looking at. For basketball the most recent game is at the top but for football it’s at the bottom. Who in the world thought it made sense for the same site to show the games in a different order based on the particular sport?
Same, definitely not a fan
So true. The other night I thought all 5 starters on my team scored less than 5 points before I realized it was shuffled around and I was looking at personal fouls
Use CBS Sports, instead. It has a normal box score display.
Legs is legit
Thanks Tim.
i share this sentiment. i hate it and i am equally perplexed why they’d do it. it’s especially bad on mobile
It’s so wild to me that this many people still use ESPN app. The autoplay nonsense got me off that long ago. There are such faster apps for finding scores
Tim legler is the man of the people! I hope I got that phrase right. But I am so happy that someone in the mainstream said this, because it is annoying looking at ESPN box scores now.
Same
Agreed
Eventually, the box score will include bet place. Pro bet win with a green check mark. Pro bet loss with a red number.
Ehh if you’ve been reading the news ESPN has been distancing themselves from gambling slowly but surely which was a completely predictable thing to happen
It’s pretty obvious the decision makers at ESPN are not sports fans. It’s almost like they’re try to degrade their product as much as they can rather than trying to enhance their user experience.
I agree it drives me nuts. I like to look at shooting stats
Crazy that people use ESPN for literally anything other than watching a game live 😂
Agreed, it’s terrible
Thank goodness someone in media is talking about it. WHAT WAS THE POINT OF THIS CHANGE
Lol I made a comment in a GDT yesterday asking for an alternative to ESPN for recaps or boxscores
I casually glance at college basketball box scores. They all seem to be standardized. Is there no standard measure anymore?
SAME!!!!! holy shit, wow i’m glad i’m not the only one
Stupid people trying to justify their smart job
I noticed this immediately and thought maybe it was a bug, especially since they didn’t change the columns on other stat pages, just the box scores. The fact that this was done on purpose blows my mind.
I was thinking I was crazy that FGs were missing without scrolling. Glad to know I’m not. The whole app is hot garbage.
YES!!! I’m glad I’m not the only one thinking this
Same Tim
“Legler cannot stand”
Espn sucks
Dunksandthrees has an immaculate box score
So it’s not just me. It ruined my day when they changed it .
I still use plaintextsports. I can’t remember who made it on this sub but it’s great and I’ve used it for years
Those box scores are awful on mobile. Go back to the old format!
The yahoo app has been amazing, I’ve only ever used it and when i tried espn I threw up in my mouth at their ui and stats lol
I thought it was just me!! It’s ridiculous. Change it back to the way it has been since the day Gamecast was invented 20 something years ago
They definitely needed to put steals and blocks but getting rid of fg/fga is fucking insane
wtf is wrong with Tim legler’s face
Probably some dei hire and change from folks running the show with no real world experience
Stop supporting inept behavior
This reminds me of my university almost 20 years ago finally getting a Jumbotron and missing out on adding in FOULS for player stats. No one cares about fts within the smaller stat board
They hadn’t changed it some 15 years later. I stopped asking