bbilyeu
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can see media in list view but not grid viewThis is occurring in a brand new install of 4.7.4, no data, plugins, default theme, etc.
It appears to be Grid View specifically that is causing it.
I found the topic linked here first and posted on it. tl;dr you have two method for currently accessing the Media->Library:
A) Try https://yourdomain.com/wp-admin/upload.php?mode=list to see if it forces it to load.
B) Add this to your wp-config.php:define( 'SCRIPT_DEBUG', true );
It’s a workaround, not a fix.
Forum: Plugins
In reply to: [Ultimate Hover Effects] Plugin breaks media libraryThis *may* be WordPress related. See this similar topic for more info. The tl;dr (too long, didn’t read) of it is “Grid View isn’t working, List View is working in 4.7.4”
It is affecting me with a fresh install, no data, no imports, no plugins, default theme.
Forum: Fixing WordPress
In reply to: 4.7.4 Media Library Not Loading in Grid ViewI am seeing this on a brand-new site install. Literally just created a generic test site, no data, no imports, etc. Media Library does not work. After adding this line to my wp-config.php, it magically works. The concerning part is that this adjustment utilizes the dev CSS/JS instead of the “minified” versions (see here).
define( 'SCRIPT_DEBUG', true );
Still digging to see if this is relatively recent to 4.7.4 or if this is something environment (OS) that I’m missing.
EDIT: To be clear, this WORKS in List View, but fails in Grid View without that snippet added.
EDIT #2: Try https://yourdomain.com/wp-admin/upload.php?mode=list to see if it forces it to load.