Hello everyone. Thanks for your interest in this contribution
Jon53 - What do you see if you go to
http://www.yoursite.com/mobile/mobile.php? Is it still blank?
usvi4me - you don't have to copy images from catalog/images/ directory to the catalog/mobile/images/
I'm assuming copied mobile directory inside of catalog
In mobile/includes/configure.php I'm redefining image directory as following
define('DIR_WS_IMAGES', '../images/');
telling all mobile bages that image directory is one level up.
Let me know if your directory structure is different
usvi4me - there two new columns were introduced recently to order_status table (public_flag and downloads_flag). I think it was done in OSCv2.2. If you don't have those columns you could add them manually or just remove public_flag from SQL statement in account_history.php (line 23)
$history_query_raw = "select o.orders_id, o.date_purchased, o.delivery_name, o.billing_name, ot.text as order_total, s.orders_status_name from " . TABLE_ORDERS . " o, " . TABLE_ORDERS_TOTAL . " ot, " . TABLE_ORDERS_STATUS . " s where o.customers_id = '" . (int)$customer_id . "' and o.orders_id = ot.orders_id and ot.class = 'ot_total' and o.orders_status = s.orders_status_id and s.language_id = '" . (int)$languages_id . "' order by orders_id DESC";
chris2403 - i forgot to include an image file to my contribution. This is why you see a question mark on the right of your category listing. I'll update a contibution to correct errors in couple of days.
chris2403 - which dd/mm/yy field you need to change?