Hi,
You have to edit util.php file by any text editor
you can find it on the following path:
public_html/wp-content/plugins/caldera-forms/classes/csv
regards
Faleh
Hi,
Fixed.
To fix it, just add the following code inside [public static function character_encoding]
======================
add_filter( ‘caldera_forms_csv_character_encoding’, function( $encoding, $form ){
header(‘Content-Encoding: UTF-8’);
header(‘Content-type: text/csv; charset=UTF-8’);
header(‘Content-Disposition: attachment; filename=Customers_Export.csv’);
echo “\xEF\xBB\xBF”; // UTF-8 BOM
return $encoding;
}, 10, 2);
==============