Thanks for your feedback.
I suspect that you’re talking about the custom field column.
Since this is a column that contain any type of information, we did not implement our StripHTML strategry Export for that column. You can use the hook ac/export/value to filter the value yourself and strip it from all HTML.
https://github.com/codepress/admin-columns-hooks/blob/master/ac-export-value.php
You can have a look at the last example that strips the value for a specific custom fields column based on the selected meta key.
Or if you want to strip the HTML for all custom fields, you can do it like this:
/**
* @param string $value
* @param AC\Column $column
*
* @return string
*/
function ac_column_export_value_strip_html( $value, AC\Column $column ) {
if ( $column instanceof ACP\Column\CustomField ) {
$value = strip_tags( $value );
}
return $value;
}
add_filter( 'ac/export/value', 'ac_column_export_value_strip_html', 10, 2 );