Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

tarbantinbookstore

Pioneers
  • Posts

    16
  • Joined

  • Last visited

Everything posted by tarbantinbookstore

  1. Thank you very much contrib works great, but it would be very nice to be able to change the quantity of goods showing in the same time, now it could be the only one... for me it would be useful for header: 1,2,3 and next.4.5 6... products in the same time in a box and sliders on the left and the right sides of the box like sylwekz site. this is my site: http://tarbantinbookstore.com
  2. thanks, it solved my problem. But, can i know why you changed that code?
  3. Hi, You write: ***FIND: case 'new_product_preview': // copy image only if modified $products_image = new upload('products_image'); $products_image->set_destination(DIR_FS_CATALOG_IMAGES); if ($products_image->parse() && $products_image->save()) { ***CHANGE TO: case 'new_product_preview': // copy image only if modified $products_image = new upload('products_image'); // EOF Categories and Products Images Folder Tree $prod_path = $HTTP_GET_VARS['cPath']; $lchar = strrpos($prod_path, '_'); if ($lchar + 1 == 1) { $lachar = 0; } else { $lachar = $lchar + 1; } $prod_path_id = substr($prod_path, $lachar); $prod_folder = tep_output_generated_category_path_fs($prod_path_id); $products_image->set_destination(DIR_FS_CATALOG_IMAGES . $prod_folder); // EOF Categories and Products Images Folder Tree if ($products_image->parse() && $products_image->save()) { BUT in my categories.php written: case 'new_product_preview': // copy image only if modified if (($HTTP_POST_VARS['unlink_image'] == 'yes') or ($HTTP_POST_VARS['delete_image'] == 'yes')) { $products_image = ''; $products_image_name = ''; } else { $products_image = new upload('products_image'); $products_image->set_destination(DIR_FS_CATALOG_IMAGES); if ($products_image->parse() && $products_image->save()) { Some text missing in your instruction. What I must to do?? I use Oscommerce V2.2 RC2. Thanks (sorry for my english)
  4. Hi, i'm newbie in oscommerce. Can anyone tell me how to Show 'Product by Category' in the mainbox? I want to change my 'Mainbox New products' with 'Product by Category' as Accesoris or anyelse. Sorry for my english :) This is my website : www.tarbantinbookstore.com
×
×
  • Create New...