I need to change my order number so that it starts, not from 1, but say 35333. Can this be done via Viart or do I need to go to the SQL file?
If the second, which field has this.
I am assuming the 'next order numver' is the 'last one + 1'.
needed asap
Vera
13 Nov 2013 6:23 PM
Login to your admin panel and go to Tools > DB Management > Run SQL Query where run this query:
alter table va_orders auto_increment=35333
It will make the next order number start with 35333.