iridiax
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Extra HTMLAnother option is to use a plugin:
http://wordpress.org/extend/plugins/search.php?q=wpautopForum: Fixing WordPress
In reply to: Extra HTMLTry having no spaces or no new lines (as you do above) between tags and no html comments.
Forum: Fixing WordPress
In reply to: Menu issue for months, no answer yet…Anybody?If it were me, I would style li.current-cat and li.current-cat-parent in my theme’s style.css. I’m not sure what could do on individual post pages since these are not categories, probably something with in_category and current_category in wp_list_categories.
Forum: Fixing WordPress
In reply to: Menu issue for months, no answer yet…Anybody?For posts (not category pages), see: http://codex.wordpress.org/Template_Tags/in_category
Also see: http://codex.wordpress.org/Template_Tags/wp_list_categories#Markup_and_Styling_of_Category_Lists
Forum: Fixing WordPress
In reply to: Menu issue for months, no answer yet…Anybody?if (is_category(array('interactive','microsite','email','print'))The above has a missing
)I always use this general format so that I can use regular code:
<?php if (is_category('a')) { ?> <!-- code here --> <?php } elseif (is_category(array('b','c'))) { ?> <!-- code here --> <?php } elseif (is_category('d')) { ?> <!-- code here --> <?php } else { ?> <!-- code here --> <?php } ?>Forum: Fixing WordPress
In reply to: My wordpress website is slow as hellForum: Fixing WordPress
In reply to: Multiple WordPress blogs hackedthe best thing to do is to rip it all out and redo it, vs editing the PHP, correct?
Yes, just make sure that you have backed up your own files and any customized WordPress files. This way, you’ll only have to check these few files.
http://codex.wordpress.org/Upgrading_WordPress_Extended (see step 7)
http://codex.wordpress.org/WordPress_Backups
http://codex.wordpress.org/Backing_Up_Your_DatabaseForum: Fixing WordPress
In reply to: Multiple WordPress blogs hackedSee:
http://codex.wordpress.org/FAQ_My_site_was_hacked
http://smackdown.blogsblogsblogs.com/2008/06/24/how-to-completely-clean-your-hacked-wordpress-installation/Because it’s multiple sites, scan your home computer for malware (some steal your FTP passwords) and also contact your web host (since it may be their shared server that was hacked).
Forum: Fixing WordPress
In reply to: I think my wordpress blog has been hacked-What can I do?Forum: Fixing WordPress
In reply to: I killed my blog…can you help bring it back?See: http://codex.wordpress.org/Changing_The_Site_URL
The WordPress and blog URLs need to be set to wherever your blog actually is. If you want your blog to be at another URL, see:
Forum: Fixing WordPress
In reply to: Posts not indexing on GoogleIf your site is not new and Google stops indexing or starts dropping indexed pages from its index, then check with Google Webmaster Tools for any site issues (malware, penalties, URL unreachable errors, robots.txt problems, etc.). I had this exact problem at one web host due to network unreachable and robots.txt file unreachable errors.
Forum: Fixing WordPress
In reply to: Temporary failure in name resolutionHave you considered switching to a different web host? You shouldn’t have to put up with fsockopen errors or edit core WordPress files to get WordPress working (which you’ll have to do with every WordPress update).
Forum: Fixing WordPress
In reply to: Posts not indexing on Googlenazsit: Google can be very slow to index new sites, sometimes taking a week or more to do so. They did recently announce that they are now using site feeds for discovering and indexing, so make sure that you have WordPress set to ping update services (Dashboard -> Settings -> Writing). I’m not sure if they gather info from Google Reader, but you could try subscribing to your site in Google Reader as well.
http://googlewebmastercentral.blogspot.com/2009/10/using-rssatom-feeds-to-discover-new.html
http://codex.wordpress.org/Update_ServicesTo see if your site is in Google, try this search with your own domain: site:example.com
Forum: Fixing WordPress
In reply to: Javascript causing problems accessing site?I ended up fixing the problem (sort of) by just removing the code from the javascript css file:
#wrapper { display: none; }
Is there a potential problem in doing so?
I don’t see any problems in removing it. Your site loads fine for me. It’s possible that people having trouble are still accessing old, bad, browser cached versions of your site. Try having them empty their browser cache and see if that fixes anything.
Forum: Fixing WordPress
In reply to: So Frustrated with RSS issue! Help PleaseA search of this forum for lastBuildDate finds this: http://wordpress.org/support/topic/302563