Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

AOMin

Pioneers
  • Posts

    10
  • Joined

  • Last visited

Profile Information

  • Real Name
    Richard Pierce

AOMin's Achievements

  1. Ok, I see what is going on here. If you are using this contrib AND the products attributes contrib this contrib must have attributes in all of its items.
  2. The required attributes portion of the contribution.
  3. I just checked this and as far as I can tell the Super Download Store requires the field to be there. In my cart it is empty and I have always wanted to get rid of it. Is there a way for me to turn it off?
  4. Is there a thread about order process of downloads? Specifically, when someone in my store clicks on "buy now" on an inventoried item the item is dropped right into their cart. If they click on "buy now" on a downloadable item they are taken to the item listing where they must then click "add to cart" to order. This confuses my customer and they stop shopping for more. Is there a way to make the downloads behave as the inventorys do? Thanks
  5. To my knowledge no one has solved this issue yet. I simply gave up on the entire mod in hopes that someone would eventually fix it. :-(
  6. Attributes disappearing when quantity is updated in shopping cart. Thanks to Bob O for solving the problem of attributes disappearing when quantity is updated in shopping cart. See… http://www.oscommerce.com/forums/index.php?s=&...t&p=1158833 The following instruction in Product Attributes - Option Type Feature (OTF) v. 2.02 Manual Installation breaks the store. Uncomment that line to fix it. OK, I just made the above change but the download manager is still broken. :'( Again, here is my dilemma. I have around 400 downloadable products along with around 100 books and cds that have to be shipped. When my customer orders a normal item it shows up in in his cart in red. When they order one of my mp3 downloads it shows in black. Obviously the rest is easy to figure out. When I drop this mod in ALL of my items order in red and no download options are offered to my customer. HAAAAALP!
  7. Ok, I solved the earlier language issue. Seems the previous change was being repeated in the one I referenced. Once I compared this to the complete sample file I found the problem. Now I have a new problem. I installed the OTF mod and now the download manager doesn't work. It seems that the mod changes whatever section modified the nature of the downloadable items and set them aside as unique. Any ideas?
  8. ok, I am in the process of installing the OTF v2.02 manual installation and have run into a problem in the instructions. Using the "option_type_feature-v2.0.2_manual_installation(-new-).txt" instructions we find this for the catalog/includes/class/shopping_cart.php file: FIND: (around line 105) $this->contents[$products_id]['attributes'][$option] = $value; REPLACE with // OTF contrib begins //$this->contents[$products_id]['attributes'][$option] = $value; $attr_value = NULL; $blank_value = FALSE; if (strstr($option, TEXT_PREFIX)) { if (trim($value) == NULL) { $blank_value = TRUE; } else { $option = substr($option, strlen(TEXT_PREFIX)); $attr_value = htmlspecialchars(stripslashes($value), ENT_QUOTES); $value = PRODUCTS_OPTIONS_VALUE_TEXT_ID; $this->contents[$products_id]['attributes_values'][$option] = $attr_value; } } if (!$blank_value) { $this->contents[$products_id]['attributes'][$option] = $value; // OTF contrib ends Ok, here is my problem, the actual code in that area is this: if (is_array($attributes)) { reset($attributes); while (list($option, $value) = each($attributes)) { $this->contents[$products_id_string]['attributes'][$option] = $value; So what am I looking for? [$products_id] or [$products_id_string] Everything else in the instructions are exactly as the instructions tell me. So what do I do?
×
×
  • Create New...