How to change the CSV delimiter

GravityImport will automatically try to detect the four commonly used delimiters: \t (tab), |, ;, and , (serves as the default delimiter when none can be detected).

You can also specify a custom delimiter (e.g., @) by using the gravityview/import/config filter:

add_action( 'gravityview/import/config', 'change_gv_importer_delimiter' );

function change_gv_importer_delimiter( $config ) {
	$config->setDelimiter( '@' );
}
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.

Still need help? Contact Us Contact Us