Naoko Takano
Forum Replies Created
-
Forum: Themes and Templates
In reply to: DIsplay content for page-home.phpTry renaming the file to front-page.php and it should be applied for the front page.
There are some other methods too. See:
http://codex.wordpress.org/Template_Hierarchy#Front_Page_displayForum: Fixing WordPress
In reply to: Hi guys!! images aren't showing up!Actually, I’m not seeing any contents in your posts… for example, no text besides title and post meta information here:
http://thenakedfan.com/?p=1Do you have
the_content();tag in your index.php or single.php?
http://codex.wordpress.org/Function_Reference/the_contentForum: Fixing WordPress
In reply to: Why aren't comments being held for moderation?Maybe you have “Comment author must have a previously approved comment” checked? No moderation is required if the comment author’s email address matches any of previously approved comments.
Forum: Themes and Templates
In reply to: Localization tools for .pot .po .mo files?Here are the basic steps for using Poedit for WordPress translation.
http://codex.wordpress.org/Translating_WordPress#Translating_With_Poedit
Since you want to translate themes. ignore “official WordPress POT file” link and just use your theme’s POT file.You can scroll down a little to read about “Translating With Gettext Tools” as well (you will need to install gettext on your machine; try googling “gettext install mac”, “gettext install XP” etc according to your platform)
Forum: Fixing WordPress
In reply to: Japanese characters not displaying in IEIf you switch the theme to default one included in the Japanese WordPress package, the page will probably display fine. When the page’s charset is not declared in the header, your IE is defaulting to Shift_JIS.
Try adding this line right after
<meta>before<title>.<meta http-equiv="content-type" content="text/html;charset=utf-8">Forum: Plugins
In reply to: [Plugin: Stats] I don't understand this at all.Sounds like you haven’t installed the Stats plugin installed 🙂
Akismet (anti-spam) and WordPress.com Stats are 2 different plugins. You’ll need to download Stats plugins from your dashboard or the link below.
Forum: Installing WordPress
In reply to: WORDPRESS.COM STATS and APIIf you don’t have access to the original API key owner’s WordPress.com account, you need to ask the person to go through the steps described in here (and add your email address associated with your API Key)
http://en.support.wordpress.com/api-keys/#changing-the-api-key-used-for-statsIn case that’s not an option, contact WordPress.com support here:
http://en.support.wordpress.com/contact/Forum: Plugins
In reply to: [WordPress.com Stats] my authors don't see statsThe permission to view the stats is associated with WordPress.com account.
Try following the steps 1-4 here to add other users.
http://en.support.wordpress.com/api-keys/#changing-the-api-key-used-for-statsPlease note the email address you enter has to be the one registered as a WordPress.com user.
Forum: Fixing WordPress
In reply to: Change blog-url at wordpress.comWhat is the error message you’re seeing on the Stats plugin?
You can contact WordPress.com Support if you are unable to resolve the problem with the API Key on your own:
http://en.support.wordpress.com/contact/You can change the API key by following this instruction here:
http://en.support.wordpress.com/api-keys/#changing-the-api-key-used-for-statsYou’ll need to start this process by logging in as the old API Key’s account. Don’t forget to select the correct web site in the step #3 — “make sure you are viewing stats for the blog you want to modify”)
If all fails though, contact WordPress.com support as James suggested.
Forum: Requests and Feedback
In reply to: Potential WordPress.org Improvement ProjectsIn addition to Mitcho’s, more localization wishlist:
- locale.wordpress.org search improvement (e.g. show search within ja.wordpress.org as prioritized results within that site along with English results)
- Same as above for locale.forums.wordpress.org
- Theme directory and plugin directory localization – navigation and translated description /tags if they have any (this is probably be a part of GlotPress integration)
- Profile to include i18n contribution
- A plugin translation adoption process that’s separate from the plugin itself
- .org P2s for international teams (we’re currently on .com blog – e.g. ja documentation team)
Forum: Fixing WordPress
In reply to: Japanese encoding issueHi mattto.
Not quite sure how the demo data was inserted, but it sounds like you have database character set/collation issue.
Check your database to make sure they are both UTF-8.
The character set should be UTF-8 Unicode and collation should be utf8_general_ci.
If they are not, create a new database with correct settings and start over from scratch. Try using the latest Japanese WordPress package downloaded from http://ja.wordpress.org/ .More info:
http://codex.wordpress.org/Converting_Database_Character_SetsForum: Plugins
In reply to: How to use I18N for plugin?The paths in load_plugin_textdomain() don’t seem right. Try:
load_plugin_textdomain($wp_version_domain, 'wp-content/plugins/wp-version/lang', 'wp-version/lang');Good luck!
Forum: Themes and Templates
In reply to: Theme translationSeems correct.
In that case, you should have something like<?php _e('Not Found', 'WhiteHouse'); ?>in your template.Are you editing & creating .po/.mo using Poedit?
Forum: Themes and Templates
In reply to: Theme translationIs there load_theme_textdomain function in your functions.php file? (see Kubrick’s example)
Is the textdomain defined correctly? For example:
<?php _e('Not Found', 'kubrick'); ?>