• Hello there,

    For visual aids sake, I was wondering if it’s possible to add an empty row between each order print.

    Thanks!

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

    (@algolplus)

    Hello

    Please, open section “Misc Settings”, mark checkbox “Custom code” and paste following code to the textarea.
    thanks, Alex

    add_filter("woe_fetch_order_data", function($rows){
       $empty_row = array();
       foreach($rows[0] as $k=>$v)
          $empty_row[$k] = "";
       $rows[] = $empty_row;
       return $rows;
    });
    Thread Starter De Belser Arne

    (@arnedb)

    Hello there,

    Thanks, this code is working!

    Kind Regards

    Plugin Author algol.plus

    (@algolplus)

    you’re welcome.

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

The topic ‘Empty row between each order’ is closed to new replies.