Jay
Forum Replies Created
-
I am still getting the error message with version Version 1.9.10
Forum: Fixing WordPress
In reply to: Images don't appear in post since Wp 3.5 upgradeAre you receiving an error message?
Forum: Fixing WordPress
In reply to: Hacked/Malware, need help pleaseThe name appears to vary, but the one I found was class-wp-eat-broken.php
Forum: Fixing WordPress
In reply to: Hacked/Malware, need help pleaseI found the culprit file in the /wp-admin/includes folder
I apologize for the duplicate issue. I just saw this one
Forum: Fixing WordPress
In reply to: Call to undefined function nocache_headers() after upgrading to 3.5Thanks for notating the cause. Over half of mine were 0 bytes, including files in wp-includes.
Forum: Fixing WordPress
In reply to: Upload directoryThe “magic” was wishful thinking :). I do agree with Josh and see no reason for it being removed.
Forum: Fixing WordPress
In reply to: Upload directoryIndeed strange, but I know that is an option they removed in 3.5. You now have to define it in the config file like so.
define( 'UPLOADS', 'wp-content/'.'files' );
would look like wp-content/filesForum: Fixing WordPress
In reply to: Upload directoryActually, I just downloaded 3.5 and tested it. The option to define a different upload directory is no longer available in dashboard/settings/media. You now only have the option to organize it by month/year.
Forum: Fixing WordPress
In reply to: Upload directoryYes and that option is no longer available in 3.5. It must be defined in the config file from what I understand. So my question is, after updating, does it default back to wp-content/uploads or will it save your current directory?
Forum: Fixing WordPress
In reply to: I changed a URL and dont wanna loose my juice.Do you know how to access your .htaccess file? If not, use the plugin option that Sunup12 suggested. To find those, just search the plugin repository.
Forum: Fixing WordPress
In reply to: I changed a URL and dont wanna loose my juice.Read the second option here It explains what to do and gives you an example. Since you are not changing domains, I dont think you need to include the domain part.
Forum: Fixing WordPress
In reply to: custom menu duplicating items from one menu to the other.Reviewing the codex it is kind of confusing, Im not sure of the difference between this and this. Im not sure why they say to wrap register_nav_menus in a function like you had it when it is a function itself. Maybe someone smarter then me can explain, because I would like to know as well. Maybe Alchymyth can explain it, he is pretty good at that. Either way, Im glad you got it working.
Forum: Fixing WordPress
In reply to: custom menu duplicating items from one menu to the other.Just a suggestion. Try registering your menus like so.
//Register Navs register_nav_menus( array( 'footer_nav' => 'Footer Nav', 'footer_two' => 'Footer Two' ) );Then call them like so
//Call Navs <div id="footernavone"> <?php wp_nav_menu(array('menu' => 'Footer Nav')); ?> </div> <div id="footernavtwo"> <?php wp_nav_menu(array('menu' => 'Footer Two')); ?> </div>Forum: Fixing WordPress
In reply to: Custom fields no more, now Featured image ?Are you one a post or page in the backend? You need to be on a post or page to see those options.