1054:Unknown column 'p.products_model_spoon'

This error is related to the php code running an SQL search for products_model_spoon in the products table.

Typically it means you have missed the SQL patch in Admin -> Tools -> Install SQL patches:

ALTER TABLE `products` ADD `products_model_spoon` VARCHAR(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL AFTER `products_model` ;

ALTER TABLE `orders_products` ADD `products_model_spoon` VARCHAR(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL AFTER `products_model` ;

The results of those two SQL scripts will add the products_model_spoon field to the products and orders products table in your database... where the SQL search is looking for the field data.

I'm glad this will work for you... once we get it working :)

Let me know if this works for you.