iridiax
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP Hacked- Need helpthe links are only visable in google and not in the source code of the pages themselves.
There are tricky hacks that only show for Google or other search engines and hacks that only show depending on the referrer. Be sure to check your .htaccess (if you have one).
Forum: Fixing WordPress
In reply to: Google Webmaster Tools Verify SiteThe html file option is another alternative. Quite simple too.
Agreed. If you use the file method, you won’t have to redo the meta tag if you ever switch themes.
Forum: Fixing WordPress
In reply to: Recover My Broken SiteAdded: If you have lost files, ask your web host about restoring a backup of your site.
Forum: Fixing WordPress
In reply to: Recover My Broken SiteForum: Fixing WordPress
In reply to: wp_list_page Being Overlapped By Ads AssistanceIt is against Adsense rules to have any page elements (like dropdown menus) obscure their ads, so they take measures so that this does not happen. Move the ad, get rid of the dropdown menu, or find a new theme.
Forum: Fixing WordPress
In reply to: Conditional Tag In Header TemplateWhat doesn’t work about it?
Forum: Fixing WordPress
In reply to: One tag font is much bigger than the rest of the tagsIt looks like a tag cloud, and if so, you can set the text size of the most and least popular tags to be the same:
Forum: Fixing WordPress
In reply to: Feed Problem!Your WordPress feed validates, so it must be a problem with feedburner or your feedburner plugin (if you are using one).
Forum: Fixing WordPress
In reply to: Blog “small” in FireboxTry visiting your site and then selecting the View -> Zoom -> Reset menu option in Firefox. I use Mac Firefox, so the zoom reset menu option may be elsewhere or renamed in your version of Firefox.
If this does not work, try disabling any Firefox add-ons (especially text size ones like NoSquint).
The question is why you would want to do that in the first place.
If the text is for search engines but not visitors to see, then be aware that search engines don’t index comment text and they are aware of the various text hiding methods and can penalize or even de-index your site for it.
Added: Text in comments is safe and won’t be penalized by search engines.
Forum: Fixing WordPress
In reply to: Javascript causing problems accessing site?I think he was just using “Planet%20Thrive%20Files” to represent my file base.
I see now, your pasted code examples are not actually found on your site. For real help with code problems, use actual code. If there is a javascript.css file, I’d recommend not using it since its display: none; could be causing problems and it’s a red flag for Google that there might be hidden text.
To find the whatever is causing the trouble, try temporarily disabling all plugins and see if the problem goes away. If it does, re-enable the plugins one by one to find the culprit. Also try switching to the default theme and see if that fixes anything. If these don’t fix it, try disabling widgets.
Forum: Fixing WordPress
In reply to: Javascript causing problems accessing site?It’s likely a problem in your scripts, however, as for your code, I see several errors:
1. Blank spaces (converted to %20) in your directory name. Use only web-safe characters for files and directories.
2. Relative links to the files. You must use absolute links (full links) with WordPress.
3. The css link tag is unclosed.The javascript.css file only contains
#wrapper { display: none; }Are you sure this isn’t causing your page content not to display?
Forum: Fixing WordPress
In reply to: Feedburner problemsYour WordPress feed validates, so it must be a problem with the plugin or with feedburner.
Forum: Fixing WordPress
In reply to: Not sure if there is a plug-in, but how do I?See: http://wordpress.org/search/%22posts+in+a+page%22?forums=1
A plugin would be easiest, but if you can’t find one, you could make a page template (based on your current theme’s page.php) containing a custom query (to show tagged posts) and a modified loop (to only show post titles) and then assign this page template to a page.
http://codex.wordpress.org/Pages#Page_Templates
http://codex.wordpress.org/Template_Tags/query_posts
http://codex.wordpress.org/The_LoopForum: Fixing WordPress
In reply to: Need Help ..Urgent..Check the wp-includes/default-filters.php file for weird code. I’m guessing that your site has been hacked.