Hi,
in order to change the export message separator to a ";" , I added this code in functions.php file of the wp theme:
[php]
add_action("gform_export_separator_6", "change_separator", 10, 2);
function change_separator($separator, $form_id){
return ";";
}
but I still have the default "comma" as a separator.
can you tell me what's wrong.
BR
Chris