jmwilcox
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Trash link in Pages section is not displayedFor any others out there that have the same problem with the post type links not appearing in the all pages and all posts admin wp pages I FIXED the problem.
The solution?
1. I downloaded Word Press.
2. I backed up my website directories and files (I didn’t back up databases).
3. I replaced my website’s wp-admin, wp-content, wp-includes, and free floating files with the freshly downloaded Word Press directories and files.
4. I went back into that folder and selectively repopulated certain directories such as uploads so that I didn’t loose all my media.Forum: Fixing WordPress
In reply to: Trash link in Pages section is not displayedIt seems that post.php was the file I was looking for. I uploaded a clean version of the file but it did nothing. I also disabled all my plugins to see if there was a conflict there. Neither of those attempts made an impact.
It also appears the autosave/ page revisions feature is not enabled. I’m not sure if that it tied to this problem at all.
Forum: Fixing WordPress
In reply to: Trash link in Pages section is not displayedWhile waiting for any replies to this inquiry I did a little more searching on my own and came across this page: http://codex.wordpress.org/Post_Status. I’m thinking in one of the main files the “show in admin status list” had been turned to false. Here is an example from the website:
function custom_post_status(){
register_post_status( ‘unread’, array(
‘show_in_admin_status_list’ => true,I’m wondering if anyone knows which file I can find this in so can change it to true or add it back in if it was removed.