Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

tt2k

Pioneers
  • Posts

    28
  • Joined

  • Last visited

Profile Information

  • Real Name
    Marco

tt2k's Achievements

  1. Thanks for the solution. I will try to implement it
  2. yes - so that all filters reset to show all products
  3. Hello, is it possible to add a option to reset all filters set by a user in the filters box ?
  4. I fixed it... in all Packages above 1.1.7 there is missing a line in the admin/products_specifications.php Add (Line 2495) $specification_data = array_merge ( (array) $specification_fixed_data, (array) $specification_data); Now it looks like: for ($i = 0, $n = sizeof($languages); $i < $n; $i++) { $specification_query_raw = "select specification_name, specification_description, specification_prefix, specification_suffix from " . TABLE_SPECIFICATION_DESCRIPTION . " where language_id = '" . $languages[$i]['id'] . "' and specifications_id = '" . $sInfo->specifications_id . "' limit 1"; // print $specifications_query_raw . "<br>\n"; $specification_query = tep_db_query ($specification_query_raw); $specification_data = tep_db_fetch_array ($specification_query); $specification_data = array_merge ( (array) $specification_fixed_data, (array) $specification_data); $specification_name_string .= '<br>' . tep_image (DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']) . ' ' . tep_draw_input_field ('specification_name[' . $languages[$i]['id'] . ']', $specification_data['specification_name'] ); $specification_description_string .= '<br>' . tep_image (DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']) . ' ' . tep_draw_textarea_field ('specification_description[' . $languages[$i]['id'] . ']', 'soft', '40', '5', $specification_data['specification_description'] ); $specification_prefix_string .= '<br>' . tep_image (DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']) . ' ' . tep_draw_input_field ('specification_prefix[' . $languages[$i]['id'] . ']', $specification_data['specification_prefix'] ); $specification_suffix_string .= '<br>' . tep_image (DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']) . ' ' . tep_draw_input_field ('specification_suffix[' . $languages[$i]['id'] . ']', $specification_data['specification_suffix'] ); }
  5. Hello, i installed the latest Version 1.1.11 with osc 2.3.1 - it works good... but i have some problems on the admin site. If i want to edit a Specification, for example to change the Justification, all made presets are gone and i must refill all data again to save it... something must be wrong in the case "edit_specification" Can anyone help?
  6. Nice contrib and exactly what i need! thx. I downloaded the Version 1.0.2 from the Contribution site for oscommerce 2.2... but it seems some files in the package are for 2.3.1 like the modules/comparision.php .. they use a table TABLE_PRODUCTS_IMAGES that doesn´t exist in 2.2 ... can anyone sent me the last working version for oscommerce 2.2 ? Thank you
  7. Hello, i had some trouble with the buy two module to add it to the shopping cart. I installed it a long time ago and it works fine, now i added sppc with price break and the buy two products won´t be added to the cart, only a blank product without price, id etc. i think the error must in here: so anyone out that can help me or runs the two buy module with sppc & price break ? bye marco
  8. same problems here .... i can´t use it.. the ajax part is not working
  9. Hello, i had some problems to add the code on my class/order.php because sppc was added and i don´t know what i have do change. so if anyone can send me or post the class/order.php so that i can compare it with my one! thanx a lot marco
  10. thank´s for the answer.. ti think thats the problem.. i added the quantity price breaks.. so i must expand the query.. i will try it later and post my results bye marco
  11. Hello, i had a problem with that contribution. after input a discount of 10% for one group it output an error: 1136 - Column count doesn't match value count at row 1 insert into products_groups select '1' as customers_group_id, ( 0.9 * p.products_price) as customers_group_price, p.products_id from products p what can i do to fix that? i am running on php 4.4.7 marco
  12. Hello, anyone fixed the tax problems ? described in post 199
  13. I need some help to add it on the featured products contrib.. anyone solved it?
  14. define a name.. that´s it like: $OutFile = "../feeds/myfeed.txt"; so the file is stored in feeds/ and the filenname ist myfeed.txt bye marco
×
×
  • Create New...