How should i change the order number like Order #3 to Order #DS3 ?
mi too , Any quicly issue ?:idea:
Order id’s can be integrers only in cs-cart. Hence they must be all numeric. They are the ‘primary key’ in the orders table and are incremented sequentially as new orders are created.
So the short anser is you can’t.
You can however increase the number of the order shown. I think it may be unsettling to a buyer to see that they’re order #3. If you go into the database and find the table cscart_orders, you can find the last order and change that number in order_id from let’s say 4 to 400. Then you’ll find that the next order will be #401. In my opinion, much better from the customer’s view.