• Resolved romainperoua

    (@romainperoua)


    Hi, I need to export data in uppercase, because for shipping reasons, uppercase is mandatory.
    How to do that please ?

    Yours

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author algol.plus

    (@algolplus)

    You should add this code to section “Misc Settings”

    add_filter('woe_fetch_order', function($row,$order){
    array_walk_recursive($row, function(&$item,$key) {
    $item = strtoupper($item);
    });
    return $row;
    },10,2);

    Thread Starter romainperoua

    (@romainperoua)

    Thanks !

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Export data in uppercase’ is closed to new replies.