Status does not apply correctly. Empty cells are on the grid.

This happens because Magento limits status length by default. To fix the problem concerning Order Status extension, please execute the following 3 queries to your database:

ALTER TABLE `sales_flat_order` CHANGE `status` `status` VARCHAR( 196 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL ;
ALTER TABLE `sales_flat_order_grid` CHANGE `status` `status` VARCHAR( 196 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL ;
ALTER TABLE `sales_flat_order_status_history` CHANGE `status` `status` VARCHAR( 196 ) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL ;

After that please flush cache storage.

See more details on Order Status page

How can we help you?

Didn’t you find the answer to your question? We are always happy to help you out.

© 2009-2024 Amasty. All Rights Reserved.