Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

burt

Members
  • Posts

    17,340
  • Joined

  • Last visited

  • Days Won

    824

Everything posted by burt

  1. Custom code, would take not more than 30 minutes for a good developer. You then add it the addons area. http://www.oscommerce.com/forums/forum/79-commercial-support-enquiries/
  2. for ($i=1; $i<=$this->num_zones; $i++) { should be for ($i=1; $i<=$this->num_zones1; $i++) {
  3. Ask google about this: " i am afraid google might consider this a duplicate product becasue of identical description and hurt SEO" Once you know the answer for sure, then you can move on to find a solution.
  4. http://www.oscommerce.com/forums/topic/223517-need-help-finding-contribution/?p=1705005
  5. @@ArtcoInc - you win todays award for replying to the oldest thread ;) If you have budget, what you want exists as a commercial addon.
  6. It sounds like you want the dim weight to be calculated for each product from it's dimensions. The total of all the dim weights (for the products being ordered) is to be used for working out postage if and only if that dim weight total is greater than the actual "real weight" of each product totalised. A: 3 products ordered. Total Real weight = 11 pounds Total Dim weight = 16 pounds. Use dim weight for shipping calculation. B: 5 products ordered Total Real weight: 21 pounds Total Dim weight: 20 pounds Use real weight for shipping calculation.
  7. If no money is to be involved at all... create a payment module that reads the person available points, if enough allow them to checkout and update the points on their account appropriately. If not enough points available, redirect back to the shopping cart page along with an appropriate message. You need to also have a way to add points to a persons account. All that is straightforward for any developer (who will likely want paying in something other than points) => http://www.oscommerce.com/forums/forum/79-commercial-support-enquiries/
  8. You need to think more. Is 1 point worth 1 dollar ? What happens if the buyer has 1000 points, but only buys $200 of stuff. The other 800 is ... ? What happens if the buyer has only 200 points, but is trying to buy $500 of stuff ? The other $300 is got from where. Point is: this is not a payment module, this is a discount module. Discount the price of the products by the number of points they have available. Save any excess for future use.
  9. You can run a SQL direct on the DB to nuke these apparently useless "customers", I posted a SQL that does it some time ago - see if you can find it.
  10. Looking at the professionalism of both UPS and USPS in the way they bring changes to their customers, I suspect not even they themslves have that information. So long as a weight is passed (standard weight or dim weight), the other data (lengtgh, width, height) is likely not needed by U(s)PS.
  11. What is the scenario if a person is buying 3 products ? Can you get them all in one box ? How can we work that out, it's pretty much impossible. You'll need to come up with a way to get a quote that is not exact, but not too high or too low. If you do it per product, and they purchase 3 products - should they then pay a totalised amount per product? Or should we take the longest, widest and deepest measurement and get a "near" price ? Look at the example I gave above, and if neither of those scenarios work, come up with something that could theoretically work. As for the UPS and USPS modules, I believe that they use weight as a deciding factor, and it would be relatively simple to take the higher of the "standard weight" or the "dim weight" and apply it for a quotation. Point is: how do we factor the dim weight for each order ?
  12. Mike almost impossible. Not sure what would work best... Example: width x tall x deep Product A: 10 x 20 x 5 Product B: 8 x 13 x 6 Product C: 11 x 11 x5 Let's say that someone bought just product B. Dimensional Weight is easy to work out: (8 x 13 x 6)/139 = 4.489 (rounded up to 5). Let's say they bought A and B. We could theoretically do this: largest width X largest tall X largest deep, which would be 10 (a) X 20 (a) X 6 (b) / 139 = 8.63 (round up to 9) Or if they bought all 3: 11 © X 20(a) X 6© / 139 = 9.49, round to 10. This is probably as close as it's possible to get. Alternative: work out the dimensional weights for each product, and simply totalise them: Product A: 10 x 20 x 5 / 139 = 7.19 Product B: 8 x 13 x 6 / 139 = 4.49 Product C: 11 x 11 x5 / 139 = 4.35 7.19 + 4.49 + 4.35 = 16.03 (round up to 17). So, here we have two ways that theoretically could work, but the end total is massively different... Thoughts?
  13. Give eBooks zero weight. Remove zero weight products from the shipping cost. function getShippableTotal() { in /includes/modules/shipping/table.php is what you need to amend to enable this, maybe someone else can give you the exact code you need or maybe you can work it out on your own.
  14. @@Roaddoctor @@Christiane N - a few hours work maximum for any good developer. Share the cost, submit it back to the addons area. http://www.oscommerce.com/forums/forum/79-commercial-support-enquiries/
  15. 2.3.3.4 and 2.3.4 are so similar that you can use addons for 2334 without any real problem. These older addons, if they do not work, it is your responsibility to your client to recode them (or if you have no code skills, get them recoded by a 3rd party) to make them work. Once you got them working, your client (or you) can then consider uploading the fixed addon to the addons area.
  16. Yes. The addon uses v3.
  17. The delivery address is created when they create an account. You, the shopowner, need to install two shipping modules, one for pickup, one for delivery. Maybe use "per item" (price set to zero, assume you deliver for free) and "flat rate" (price set to zero)...now find the respective language files for those delivery methods and change the text of each to "pickup" and "we deliver to you". You might also want to have a time controller on the shipping page so that the buyer can select what time they want the pizza delivered.
  18. If you want to help yourself and everyone else, you can approach the original creator and pay him to update it.
  19. The 2.3.4 login page uses content modules. The loginradius addon is for a login page that does not use modules. Options: 1) recode the loginradius addon to 2.3.4 standard and release it back to the community. 2) use the older style login page and lose the new features 2.3.4 login provides
  20. Official DOwnload: http://addons.oscommerce.com/info/9078 Stripe is core code from v2.3.4 onwards.
  21. Now is the time for you to make your translated files available at http://addons.oscommerce.com Thanks in advance from all the other Danish users.
  22. Keep on tracking back through; $this->calculate(); == function calculate -in the same file (compare this to a stock 2.3.4) in that function you'll find other functions (eg: tep_round and so on). Find these functions and compare to a stock 234). Something somewhere is causing issues for you..
  23. @@Mort-lemur I've just buzzed through your older thread where you added loads of addons, but didn't see any addon that could (at first glance) cause subtotal issues. There is mention of some order_total changes you made...but not much detail on it so cannot say if that is the culprit.
  24. @@quetevendo correct solution: change any mysql_query to tep_db_query
×
×
  • Create New...