Remove double quotes from column value in exported csv

[ad_1]

Hy @erdoslaszlo,

You can remove the enclosure by adding the following snippet to your theme’s functions.php or using a snippet plugin:

add_filter( 'gfexcel_renderer_csv_enclosure', '__return_null' );

However, please be careful with this; as any other comma’s that do end up in the output will be seen as delimiters; making for weird output.

To change the delimiter you can use the gfexcel_renderer_csv_delimiter-hook. To change it to a semi-colon for example, you would need the following code:

add_filter( 'gfexcel_renderer_csv_delimiter', function() { return ';'; } );

I hope this helps you out.

Kind regards,

Doeke

 

This site will teach you how to build a WordPress website for beginners. We will cover everything from installing WordPress to adding pages, posts, and images to your site. You will learn how to customize your site with themes and plugins, as well as how to market your site online.

Buy WordPress Transfer