Fields containing HTML and other symbols
-
Hello,
I just wanted to start by thanking you for such an easy to use, diverse plugin.
After testing out a few exports I noticed HTML outputting to a few fields, in the form of <span>’s. I found the following PHP to solve this issue:
add_filter( "woe_csv_output_filter", function($row, $formatter){ return array_map( "strip_tags", $row ); },10,2);
This did remove the HTML but certain fields are still not displaying properly and instead are showing a range of symbols.
As an example my User Height field is outputting result as: 5a€22a€3
and my size field is outputting a result as: S £0
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Fields containing HTML and other symbols’ is closed to new replies.