Takuro Hishikawa
Forum Replies Created
-
Forum: Plugins
In reply to: [Really Simple CSV Importer] Only first line is importedCould you check your data with this add-on plugin?
If this add-on activated, importing will not processed, and parsed csv data will just be displayed on your dashboard.https://gist.github.com/hissy/7175656
How to use:
1. Click “Download gist” button on above url and unzip it
2. Upload rscsvimporter-debug.php to wp-content/plugins and activate it
3. Do import csv with really simple csv importer normally.Forum: Plugins
In reply to: [Really Simple CSV Importer] How to change a delimiter?I’m sorry but there is no option to change delimiter by default on current version (0.5.7). Please change delimiter direct at line 5 in rs-csv-helper.php.
https://github.com/hissy/rs-csv-importer/blob/master/rs-csv-helper.php#L5Forum: Plugins
In reply to: [Really Simple CSV Importer] Suddenly the importer stoped to show attachmentsI’m sorry, but I couldn’t understand your situation. What is the problem? Fails to import attachments?
Forum: Plugins
In reply to: [Really Simple CSV Importer] Set yo publish as defaultSorry to late response. Would you try to increase max_input_vars value of php?
Yes. Simply you can create array of post id and set it to acf field.
Please check “Other Notes” how to usereally_simple_csv_importer_save_meta
filter.Forum: Plugins
In reply to: [Really Simple CSV Importer] Importing post commentsThank you too for using our plugin! ??
Forum: Plugins
In reply to: [Really Simple CSV Importer] Set yo publish as defaultSeveral reasons can generate errors while importing. I have some questions.
1. Could you check your error message? If you got white page, you should turn debug mode on.
2. Every time stops when imported 3k posts even if you change server variables? If so, what is on line 3000 and 3001?Forum: Plugins
In reply to: [Really Simple CSV Importer] Importing post commentsSorry, Importing comments is not supported yet.
Forum: Plugins
In reply to: [Really Simple CSV Importer] WooCommerce product importI have no experience of using WooCommerce, but I think “No”. WooCommerce uses some extended mysql tables, but you are able to import to only default WordPress tables with this importer. You should use WooCommerce CSV Import extension.
Forum: Plugins
In reply to: [Really Simple CSV Importer] Set yo publish as defaultYou will be able to change post status with filter hook.
Eg: Save below php code as php file, and upload and activate it.<?php /* Plugin Name: Really Simple CSV Importer Publish Immediately add-on Version: 0.1 */ class rscsvi_publish_immediately { // singleton instance private static $instance; public static function instance() { if ( isset( self::$instance ) ) return self::$instance; self::$instance = new rscsvi_publish_immediately; self::$instance->run_init(); return self::$instance; } private function __construct() { /** Do nothing **/ } protected function run_init() { add_action( 'init', array( $this, 'add_filter' ) ); } public function add_filter() { add_filter( 'really_simple_csv_importer_save_post', array( $this, 'filter_save_post'), 10, 2 ); } public function filter_save_post($post, $is_update) { if ( ! $is_update ) { $post['post_status'] = 'publish'; } return $post; } } $rscsvi_publish_immediately = rscsvi_publish_immediately::instance();
Forum: Plugins
In reply to: [Really Simple CSV Importer] Cannot upload CSV fileHi guys, please tell me more about your csv file and your environment.
1. Which machine used to create csv file, Windows OR Mac/Linux
2. Which server os are used to running WordPress, IIS(WIndows) OR LinuxBoth OS has different line endings, and PHP might be not able to recognize different line ending.
Forum: Plugins
In reply to: [Really Simple CSV Importer] updating a post_id custom post type 2Could you check your data with this add-on plugin?
If this add-on activated, importing will not processed, and parsed csv will just be displayed on your dashboard.https://gist.github.com/hissy/7175656
How to use:
1. Click “Download gist” button on above url and unzip it
2. Upload rscsvimporter-debug.php to wp-content/plugins and activate it
3. Do import csv with really simple csv importer normally.Forum: Plugins
In reply to: [Really Simple CSV Importer] post_type value missingeven bundled example file? that’s weird. could you tell me an error message you’ve got?
Forum: Plugins
In reply to: [Really Simple CSV Importer] Problem importing content textGreat. You will also be able to use LibreOffice. It’s open source spreadsheet software which has a lot of features.
Forum: Plugins
In reply to: [Really Simple CSV Importer] Cannot upload CSV fileHi rpazos, could you tell me more about your csv file, or upload to somewhere?