ABCDEFGHIJKLMNOPQRST
1
If you'd like to edit the document, go to File > Make a Copy, then you can have it on your own account
2
care of http://mattcromwell.com
3
YOUTHEMEPLUGINCACHING/MinifyDATABASECOREHOSTING
4
FRONT-END
5
Page/Post updatesDouble-check that you selected the right category/tag, and that it's published not in "Draft" mode. Also check if there are previous "revisions" of this post/page and compare them.Open DevTools and see if there's a conflicting CSS ruleDisable any plugins that are related to front-end appearanceTurn off inline minify, or CSS minify.Check the post_modified field of the _posts table to see if it reflects your latest save point.Delete all contents of wp-admin and then upload from a freshly downloaded zip of WPContact them
6
Something doesn't look rightSwitch to "Text" mode and see if there's funky code in thereOpen DevTools and see if there's a conflicting CSS ruleDisable any plugins that are related to front-end appearanceTurn off inline minify, or CSS minify.Check the post_modified field of the _posts table to see if it reflects your latest save point.Delete all contents of wp-admin and then upload from a freshly downloaded zip of WPContact them
7
Was your plugin created by your theme or a plugin?
8
Widget/Sidebar problemDid you hit "save" (really, it happens more often than you think!)Open DevTools and see if there's a conflicting CSS ruleDouble-check the settings of the pluginClear page cache (or everything)dig around the wp_options table (warning LOTS of stuff in there)Contact them
9
Post thumbnail not rightIs the file you uploaded too small for a proper thumbnailSearch your functions.php for this: "set_post_thumbnail_size" (see also: http://codex.wordpress.org/Function_Reference/add_image_size)Disable any plugins that are related to front-end appearanceClear page cache (or everything)Go to the _post_meta table, sort by post_id, find your post ID number and check to see if it has an associated _thumbnails_idHighly unlikely that this is relevantContact them
10
Images not floating correctly in contentDouble-check that image's settings, and/or switch to text mode to look at the codeOpen DevTools and see if there's a conflicting CSS ruleOpen DevTools and see if there's a plugin stylesheet that's conflicting. If there is, and that plugin is not used on that page, disable it for that page with the Plugin OrganizerClear page cache (or everything)Only things relevant to this problem are stored at html code, see "You" "Theme" or "Plugin"Highly unlikely that this is relevantReally, just contact them
11
BACK ENDYOUTHEMEPLUGINCACHING/MinifyDATABASECOREHOSTING
12
Getting PHP ErrorsWhat was your last action? Undo it, then clear your cache, back things up and try it again.Change to twentytwelve and see if the error goes away. If it does, look at your theme's functions.php for something like this: add_action('admin_enqueue_scripts', 'my_admin_theme_style'); Disable that whole function with // before each line and see if the errors go away. If they do, contact your theme developer.Does the error point to a specific file? Does it belong to a plugin you just activated? Does the error go away when you disable the plugin? If the answer to all three of those is "yes" copy the entire text of the error, go to the developers support page and submit it. It's possible they've already posted a work-around until they can provide a fix.Caching will only produce errors if the caching program or provided (like CloudFlare) itself is misbehaving. It should be obvious if this is the case. Otherwise, clearing your cache should resolve it.
13
White Screen of Death!If you've been "Troubleshooting" and this just happened, undo whatever the hell you just did! If that doesn't fix it, luckily you backed everything up before you started Troubleshooting. Start from scratch and watchout when you get to that point again.The most likely culprit of a theme causing the White Screen of Death is in the functions.php file. Find out really quickly by just renaming it functions-OFF.phpQuickly disable ALL plugins by changing the plugins folder name to "plugins-OFF". If that gets you back, then add "-OFF" to each individual plugin folder name, then change it back one by one until you find which one did it.Not the problemVerySwap out everything in wp-admin, and wp-includes
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100