Tom Morton
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: how to add text to every postMy favorite way of doing this is via a filter:
add_filter ('the_content', 'insertSubscribeNewsLetter'); function insertSubscribeNewsLetter($content) { if(is_single()) { $content.= '<div style="border:1px dotted #000; text-align:center; padding:10px;">'; $content.= '<h4>Enjoyed this article?</h4>'; $content.= '<p><a href="http://facebook.com/YOURURL/">Check us out on Facebook!</a></p>'; $content.= '</div>'; } return $content; }That will append onto each post if the user is on a single page. There are other ways of doing this, you can check a great list out here: http://ithemes.com/automatically-add-content-to-your-wordpress-posts-and-pages/
Forum: Fixing WordPress
In reply to: How do I type Korean characters on my wordpress?Hmm, I would that that depends on your computer at that point, would it not? Changing the language settings for your keyboard/OS?
Not very experienced in this, hopefully some more multilingual forum members can back me up on that!
Forum: Fixing WordPress
In reply to: WordPress 3.1 bugged?Great that you figured it out – for me its always better to know what’s going on rather than be in the dark.
Also, if this topic is resolved be sure to mark it as such. Thanks!
Forum: Fixing WordPress
In reply to: pure essence themeYou are welcome, if this topic is resolved be sure to mark “resolved”
Forum: Fixing WordPress
In reply to: WordPress 3.1 bugged?Wait, there shouldn’t be a wp-images? Where did you get WP-images?
Forum: Fixing WordPress
In reply to: Video embed code disappearingTry storing the code in a custom field. Even if you don’t have the video display via a custom field, you’ll always have it there in case the code is removed from the post.
Edit the post, find the field, copy/paste.
My question is why is it happening. Maybe a plugin?
Forum: Fixing WordPress
In reply to: How do I type Korean characters on my wordpress?http://codex.wordpress.org/WordPress_in_Your_Language
Find your language 🙂
Forum: Fixing WordPress
In reply to: Can't go to previous pagesPermalink issue? Try heading to WP-Admin, settings>permalinks and resetting those.
Forum: Fixing WordPress
In reply to: php – Changing Meta TagsYou don’t need any of this. There are HUNDREDS of wordpress plugins that do this stuff for you and you can manage them all via the WP-Admin.
My suggestion is the All in One SEO Pack (link). You actiave that, then go to the edit page of “Page 1” and you’ll see a new edit box that asks for keywords, description, title, etc.
All done, no PHP required. Nice and easy 🙂
Forum: Fixing WordPress
In reply to: pure essence themeYou are running 3.1, so the menu is probably handled in WP-Admin under Apearance>Menus.
The title/subtitle look like they’re just being pulled from WP-Admin, under Settings>General Settings.
Forum: Fixing WordPress
In reply to: Home Page redirects to white screenLooks like a WSOD (White Screen of Death) issue to me.
Try logging into your FTP and renaming your plugins folder and then your Active Theme’s folder. This will cause all plugins to deactivate and then your theme to be reset to the Twentyten Theme.
Once you do all that, try to log in again and it should come back up. If it doesn’t, its a core WP issue and you may have to do a reinstall.
Forum: Fixing WordPress
In reply to: WordPress 3.1 bugged?Stupid question I know, but what Browser are you using?
If its not a weird browser issue I can’t imagine what would be stopping it. I’d try the twenty ten theme without any plugins active and see what happens.
Forum: Fixing WordPress
In reply to: Tired of manual FTP – want to update in dashboard: how?Call your host and explain what you are trying to do. Most people who work in the industry know what wordpress is and should be able to help get it working.
If not, drop them and go with someone who gives you a WordPress Install as a feature choice.
Forum: Fixing WordPress
In reply to: Article not listed in Category pageIs the article set to Private?
Forum: Fixing WordPress
In reply to: Background change?You are using the TwentyTen Theme. Head to your WP-Admin, go to appearance->Background.
Upload the image there and you should see it!