Skip to content

Instantly share code, notes, and snippets.

@DevWL
Forked from rafsuntaskin/functions.php
Last active June 10, 2021 14:44
Show Gist options
  • Select an option

  • Save DevWL/2851edc795009ff9d99a730dc1a243e7 to your computer and use it in GitHub Desktop.

Select an option

Save DevWL/2851edc795009ff9d99a730dc1a243e7 to your computer and use it in GitHub Desktop.

Revisions

  1. DevWL revised this gist Jun 10, 2021. No changes.
  2. @rafsuntaskin rafsuntaskin revised this gist Sep 11, 2020. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion functions.php
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,6 @@
    <?php

    add_filter( 'woocommerce_csv_export_delimiter', function ( $delimiter ) {
    add_filter( 'woocommerce_product_export_delimiter', function ( $delimiter ) {

    // set your custom delimiter
    $delimiter = '.';
  3. @rafsuntaskin rafsuntaskin created this gist Sep 11, 2020.
    9 changes: 9 additions & 0 deletions functions.php
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    <?php

    add_filter( 'woocommerce_csv_export_delimiter', function ( $delimiter ) {

    // set your custom delimiter
    $delimiter = '.';

    return $delimiter;
    } );