Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

hazwo

Archived
  • Posts

    4
  • Joined

  • Last visited

Profile Information

  • Real Name
    Hazwo

hazwo's Achievements

  1. hello, i'm also looking for a oci system. please can you tell me, which software developer you already have found. regards, hazwo
  2. hello again, this is the piece of code on a clean installation: search for in folder/includes/modules/product_listing.php case 'PRODUCT_LIST_QUANTITY': $lc_align = 'right'; $lc_text = ' ' . $listing['products_quantity'] . ' '; break; replace it with: // start hack case 'PRODUCT_LIST_QUANTITY': $lc_align = 'center'; // product image in listing hack patch // original $lc_text = ' ' . $listing['products_quantity'] . ' '; $lc_text = ' ' . picto_qty($listing['products_quantity']) . ' '; break; // eof hack
  3. hello, i find a solution for your problem, to show up the icons instead of the numbers. go to your shop folder/includes/modules/product_listing.php and find something like that: case 'PRODUCT_LIST_QUANTITY': $lc_align = 'center'; $lc_text = ' ' . $listing['products_quantity'] . ' '; break; change it to: case 'PRODUCT_LIST_QUANTITY': $lc_align = 'center'; // product image in listing hack hazwo // original $lc_text = ' ' . $listing['products_quantity'] . ' '; $lc_text = ' ' . picto_qty($listing['products_quantity']) . ' '; break; on my installation, this little thing works great. regards, hazwo
×
×
  • Create New...