Chris_K
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can I use Google Adsense On Free blog?If your free blog is hosted at WordPress.com, no. And for future reference, the .com support forums are here: http://en.support.wordpress.com/
If your free blog is using software that you got here at WordPress.org and installed on your own hosting account, then you can certainly run ads.
Forum: Themes and Templates
In reply to: How do truncate and show read more, need help…Are you using a really old theme? Don’t often see folks going after post_content directly like that these days.
Try replacing
<?php echo substr($post->post_content, 0, 200); ?>with
<?php the_excerpt() ?>See also:
http://codex.wordpress.org/Customizing_the_Read_More
http://codex.wordpress.org/Template_Tags/the_excerptIf you want to customize the excerpt beyond what you get from the_excerpt() check out the plugins section and look for one of the “excerpts” customization plugins.
Forum: Installing WordPress
In reply to: This website can transfer it?You can find instructions for moving your WordPress blog at Moving_WordPress. You’ll want to make sure that the new host meets the WordPress requirements as not all free hosts will…
Forum: Fixing WordPress
In reply to: help with my worgpress blogEdit the settings in wp-config.php database settings to point to the database (and prefix) that you had been using.
Forum: Your WordPress
In reply to: I love WordPressWell, hard to say. (you forgot to give a link to it…)
Forum: Themes and Templates
In reply to: can I Submit my Themes to wordpress.orgGenerally, yes. Have a look at http://wordpress.org/extend/themes/about/
I can promise you that WordPress.org (this site) had absolutely nothing to do with your suspension. While I can’t speak for WordPress.com, I sure can’t see how they could possibly work with your host to suspend an account just based on your using a plugin.
You really need to talk to AFMU.
I’m a little confused on why you think WordPress.com suspended your self-hosted blog? Have you contacted your host to see if they know what’s up? I think that’s where I’d start.
Forum: Requests and Feedback
In reply to: My Posts Never Appear AnywhereThis one, right?
http://wordpress.org/support/topic/403468?replies=1As for why? Afraid the whims of Akismet are still a mystery to me 🙂 One assumes that after we release you enough times it’ll get trained… One hopes.
Forum: Fixing WordPress
In reply to: Unwanted Ads by GoogleYou’ll want to take this up with WordPress.com support. We’re the self-hosted .ORG version over here and can’t really help you.
http://en.support.wordpress.com/
That being said, having recently helped a friend over on .COM, I recall this link: http://en.support.wordpress.com/advertising/ (see point 2).
Apologies. That’s for “WordPress Database Backup” plugin. Perhaps not the same.
Log into your WordPress.
Go to Tools -> Backup.
Forum: Plugins
In reply to: Plugin Activation ErrorTheir end.
Try modifying your site’s .htaccess file and adding this line:
AddType x-mapp-php5 .phpSeems that by default 1&1 has you running PHP4. I have an old’ish blog post that discusses this in more detail if necessary.
Forum: Requests and Feedback
In reply to: My Posts Never Appear AnywhereStill the Akismet issue. I just “released” that last post from queue.
Forum: Themes and Templates
In reply to: CHANGING HEADERYou’ll want to edit your theme’s stylesheet (style.css).
Find this section:
h1 a { color: #f9f9f9; border: none; }Change the color to whatever you want and save it.