• There is a possibility that when exporting in CSV the columns are not delimited by a comma (,), since when a message is written in a comma it separates it into different columns, it is possible to be delimited by (;)?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Takayuki Miyoshi

    (@takayukister)

    You can use the flamingo_csv_value_separator filter hook to do that.

    Thread Starter goala2016

    (@goala2016)

    I do not understand what you mean by that … Can you explain better?

    Just in case someone else stumbles here from Google / elsewhere and is looking for the answer.

    You can add for example something like this to your theme’s code (usually functions.php):

    
    /**
     * Changes CSV separator in Flamingo plugin.
     */
    add_filter('flamingo_csv_value_separator', function($seperator) {
      return ';';
    }, 999);
    
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Export CSV (,)’ is closed to new replies.