Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

sugiartha

Pioneers
  • Posts

    61
  • Joined

  • Last visited

About sugiartha

  • Birthday 01/01/1968

Profile Information

  • Real Name
    Sugiartha
  • Gender
    Male
  • Location
    Bali

sugiartha's Achievements

  1. in order to display some order status, update this contribution as follow: open admin/includes/header.php, and find this string: // order summary add the following after above string: $orders_status_restriction = '1,3'; //list of allowed order status id, separeted by comma and find this code (there are 2 match) $orders_status_query = tep_db_query("select orders_status_name, orders_status_id from " . TABLE_ORDERS_STATUS . " where language_id = '" . (int)$languages_id . "'"); and replace by this $orders_status_query = tep_db_query("select orders_status_name, orders_status_id from " . TABLE_ORDERS_STATUS . " where " . ((tep_not_null($orders_status_restriction)) ? " orders_status_id in (" . $orders_status_restriction . ") and " : "") . " language_id = '" . (int)$languages_id . "'");
  2. blank page can be real blank page. or there is error but not showing up cause display_errors turn off...
  3. I suspect your server doesn't have display_errors turn on. check on admin > tools > server info
  4. open your 'Discount coupons' file and find this code require(DIR_WS_CLASSES . 'currencies.php'); replace it with the following one include_once(DIR_WS_CLASSES . 'currencies.php');
  5. put this before closing head section (</head>) : <style>body{background-color:#ffffff !important;}</style>
  6. Thanks for the feedback everyone. We hope you enjoy this contribution and find some extra minutes each day with the time it saves =) azer: Good idea, I like the idea of the having a row of icons like that, can you pm me a screenshot? Would love to see how it looks. The only thing I can see as a potential negative to that method of installation would be that you pshycically have to mouse over each icon to get your counts via alt text verses seeing them automatically no matter what admin page you were on. I like having the counts visible....especially the whos online counts....that way whenever I see a nice number of users online I can click in and check out their referal urls and see what they are up to =)
  7. The "Admin Summary Info" contribution is designed to display usefull shop information directly in the header of your admin page. With the "Admin Summary Info" contribution you can quickly monitor how many orders you have received along with their status, number of customers, Reviews, and even how many users are currently online exploring and shopping at your oscommerce store. This contribution was developed to put some of the most commonly needed day to day data within a single clicks reach to save time while adminstrating your site.
  8. you should upload your images manually to catalog images folder (/catalog/images/) and edit image src tags accordingly (ie <img src="http://domain.com/catalog/images/xxx.jpg"> )
  9. Search on oscommerce contribution page with this keywords: price login
×
×
  • Create New...