Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Adding new text in status drop down value


craggers

Recommended Posts

Currently at the moment it shown

 

- Pending

- Processing

- Delivered

 

I would like to add "Cancelled" in there, I can't find which code those drop down value belong to.

 

The value for that status is not in code. Its from the database. Run the following sql query in your orders_status table

INSERT INTO `orders_status` ( `orders_status_id` , `language_id` , `orders_status_name` , `public_flag` , `downloads_flag` )
VALUES (
'0', '1', 'Cancelled', '1', '1'
);

 

 

Pl back up first

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...