Tip: Convert special characters when exporting
-
Hi, I had trouble exporting to CSV because all special characters like ?, d?, ?, etc. which are typical for Central Europe have been encoded like this e.g. Sonja Sojkov???? instead of Sonja Sojková
So adding this to w-content\plugins\contact-form-cfdb-7\inc\export-csv.php
Changing lines 132 – adding utf8_encode
So the result is this.$data[$key][$i] = str_replace( array(‘"’,’'’,’/’,’\’)
, array(‘”‘,”‘”,’/’,’\\’), utf8_encode($value) );@creators would you maybe consider adding this as standard ? Thanks
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Tip: Convert special characters when exporting’ is closed to new replies.