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

    (@anmari)

    Hi botguy,

    you’re probably right, it shouldn’t be there unless requested.

    Change has been quickly tested and will be in next update.

    In the interim you could do the following:

    in function amr_lines_to_csv around about line 140 is
    array_walk($lines,'amr_undo_db_slashes');

    add this code after that line:
    array_walk($lines,'amr_remove_ID_from_front'); // REMOVE technical ID

    AND above that function, add

    function amr_remove_ID_from_front (&$line) { //its a csv line.  Find first comma and strip till after comma
    	$line['csvcontent'] = substr($line['csvcontent'], strpos($line['csvcontent'],',')+1);
    }

    Thread Starter botguy

    (@botguy)

    Awesome! Thank you!

    Thread Starter botguy

    (@botguy)

    Resolved!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Export CSV without ID column?’ is closed to new replies.