Takuro Hishikawa
Forum Replies Created
-
Forum: Plugins
In reply to: [Really Simple CSV Importer] Import contents with embed video shortcodeI think you did not escape quotes in your csv file.
Forum: Plugins
In reply to: [Really Simple CSV Importer] Import tag slugI’ve tested with an example csv file below. I can import tags with slug.
"post_title","post_type","post_status","post_tags" "tag test","post","publish","apple"(note: “apple” in csv file is lowercase, this is slug. “Apple” in the image is real name of the tag.)
Forum: Plugins
In reply to: [Really Simple CSV Importer] Import tag slugOh, I’m sorry. “tax_post_tag”
Forum: Plugins
In reply to: [Really Simple CSV Importer] Import tag slugOK, please use “tax_tags” header instead.
Forum: Plugins
In reply to: [Really Simple CSV Importer] Import tag slugPlease use “post_tags” column header. see the documentation.
Forum: Plugins
In reply to: [Really Simple CSV Importer] Use as a taxonomy importer / updaterHey this is the answer 😉
http://notnil-creative.com/blog/archives/2913Forum: Plugins
In reply to: [Really Simple CSV Importer] Use as a taxonomy importer / updaterFYI, there is a forked version of my importer plugin that is converted to a taxonomy importer, but I haven’t tested it yet.
https://github.com/Mantish/tx-csv-importerForum: Plugins
In reply to: [Really Simple CSV Importer] Import True/False dataNormally, WordPress saves only strings in its custom field, but some plugins enables to save other types of data like boolean. Which plugin are you using?
Here is an example csv file that includes custom field data.
https://github.com/hissy/rs-csv-importer/blob/master/sample/custom_fields.csv“normal_field” is a normal custom field, the key is “normal_field”.
“cfs_date” is a special custom field provided by Custom Field Suite plugin.
“field_5391c98483502” is also a special custom field provided by Advanced Custom Field plugin.If you are not using these plugin, you can simply use your custom field key as column header.
I’ve tested with special characters, but there is no problem. I can import them. Here is my example csv file:
http://notnil-creative.com/index.php/download_file/48/Probably your spreadsheet software escapes special characters when exporting csv file.
Forum: Plugins
In reply to: [Really Simple CSV Importer] Use with Search Keyword Redirect plugin?Probably not.
Forum: Plugins
In reply to: [Really Simple CSV Importer] Use with Search Keyword Redirect plugin?I think my plugin is not compatible with Search Keyword Redirect plugin, because the plugin saves the data to options table, not to posts table.
Forum: Plugins
In reply to: [Really Simple CSV Importer] Action hooks?I have an another example, and this will helps you.
- 'name' => $post->post_name + 'name' => $post['post_name']Notice: “really_simple_csv_importer_class” filter will be fired after the debugger process.