Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Mystex

Archived
  • Posts

    10
  • Joined

  • Last visited

Profile Information

  • Real Name
    Tracy Schultz

Mystex's Achievements

  1. looking at the code more I have to wonder if the following function isn't more inline with what the add_cart function in /catalog/includes/classes/shopping_cart.php function get_quantity($products_id) { if ($this->contents[$products_id]) { return $this->contents[$products_id]['qty']; } else { return 0; } }
  2. to implement the Quantity Price Break I think I'm on the right track and first would be to modify the cart file. So comparing the cart file with the modified cart file for quantity price break I have figured out what some of the functions are but here's one I'm not sure what it does. function count_contents() { // get total number of items in cart $total_items = 0; if (is_array($this->contents)) { reset($this->contents); while (list($products_id, ) = each($this->contents)) { $total_items += $this->get_quantity($products_id); } } return $total_items; } Is this function the same as the function add_cart?
  3. I was looking at the code in the cart and I'm curious, to implement the Quantity price break I think I just need to edit the cart. Would I be correct in this assumption?
  4. How would you incorporate this into the order editor so that the admin side use quantity price breaks?
  5. Loving this mod but having just one problem. When I go to create a bundle it will only let me have 127 of any one item in that bundle. While this might not be a problem for most I sometimes need at least 600 of some of our smaller parts. I thought it might be an error in the SQL but I've yet to find a problem there yet.
  6. I can't help but wonder if I'm approaching this in the wrong way and I might need to use a different price break module instead, anyone able to offer some insight into this?
  7. I've got this contribution set up Simple Price Break and it works wonderfully, but what I want to do is find a way to incorporate that with pricing for attributes. I'm not a php programmer but I do realise I would need some kind of array to accomplish this. What I'd like to do is show a table for break pricing for the basic item as well as tables showing break pricing for an attributes. This is my demo store where I'm working to get it developed as I need it to be. Demo store Tracy
  8. I'm having problems with my catalog paginating. I'm using Printable Catalog V3.5 MS2. Everything looks ok but its not going to another page when you click on the navigation bar at the bottom. Here's my store that i'm working with right now I set the items per page to 3 so that I could test it but I've yet to figure out why its not paginating. Any and all help with this would definetly be appreciated.
×
×
  • Create New...