Quote Originally Posted by swguy View Post
If you don't see it in admin then I suspect you've merged includes/classes/order.php incorrectly; this is where the records get inserted. If you get "no gift wrapping selected" then the query

select orders_products_id
from " . TABLE_ORDERS_GIFTWRAP . "
where orders_id = '" . zen_db_input($oID) . "' and wrap = 1");

returned zero records. Trace this back.
Bingo!! It turns out that the timezone mod had also overwritten includes/classes/order.php. I merged the giftwrap code into the file and wha'la, it now works.

Thanks swguy for your speedy and helpful assistance!!