Takuro Hishikawa
Forum Replies Created
-
Forum: Reviews
In reply to: [Really Simple CSV Importer] Simple things are the bestThank you for your nice review!
Forum: Plugins
In reply to: [Really Simple CSV Importer] "All Done" but nothing importedHi dariodev, you are correct. please use proper status value.
Forum: Plugins
In reply to: [Really Simple CSV Importer] Custom Field Suite Loop This PluginThis code is not yet tested, but here is my idea:
function rsci_meta_filter( $meta, $post, $is_update ) { $meta_array = array(); $plant_ratings = array(); $values = explode(',', $meta['plant_rating_values']); $dates = explode(',', $meta['plant_rating_dates']); foreach ($values as $i => $value) { $plant_ratings['plant_rating_values'] = $value; $plant_ratings['plant_rating_dates'] = $dates[$i]; } $meta_array['cfs_plant_ratings'] = $plant_ratings; return $meta_array; } add_filter( 'really_simple_csv_importer_save_meta', 'rsci_meta_filter', 10, 3 );Forum: Plugins
In reply to: [Really Simple CSV Importer] Import image from URL to ACF custom fieldYou can do it, since version 1.0.
This is an example of add-on plugin.
https://gist.github.com/hissy/0973a6a9977129a6ebd0Forum: Plugins
In reply to: [Really Simple CSV Importer] Custom Field Suite Loop This PluginOkey, plz share your code
Forum: Plugins
In reply to: [Really Simple CSV Importer] Custom Field Suite Loop This PluginTo import to custom field loop, you have to create associative array with using a filter hook.
http://customfieldsuite.com/docs/save/
https://wordpress.org/plugins/really-simple-csv-importer/other_notes/Please check out my blog post.
http://notnil-creative.com/blog/archives/2913I said about ACF in this post, but the way is same also with CFS.
Forum: Plugins
In reply to: [Really Simple CSV Importer] Recommended method/plugin for CSV export?I don’t know why Gumroad link is unavailable. Please contact him.
Forum: Plugins
In reply to: [Really Simple CSV Importer] Invalid order due custom taxonomy importYou can’t.
Forum: Plugins
In reply to: [Really Simple CSV Importer] Invalid order due custom taxonomy importSorry, what would you want to do?
Forum: Plugins
In reply to: [Really Simple CSV Importer] Invalid order due custom taxonomy importTerms are always ordered by its name. If you’d like to change the order of terms, you can use another plugin.
https://wordpress.org/plugins/taxonomy-terms-order/Forum: Plugins
In reply to: [Really Simple CSV Importer] Update row based on a custom field ID/key matchYes, you should customize my above code little, but you can do that.
Forum: Plugins
In reply to: [Really Simple CSV Importer] Recommended method/plugin for CSV export?Please check this plugin
Forum: Reviews
In reply to: [Really Simple CSV Importer] Helpful!Thanks, Kite
Forum: Plugins
In reply to: [Really Simple CSV Importer] Update row based on a custom field ID/key matchHi. That is a bit complicated task, but you can. Please check this example. Thanks!
Forum: Plugins
In reply to: [Really Simple CSV Importer] WP_Post object is not set.OK, your problem is the double quotation. Please do not add quotes manually, use the export option of spreadsheet software. I recommend you to use LibreOffice.