osCommerce and osCMax shopping cart software forums

Shopping Cart Software

osCommerce with teeth!

 

Issue with shipping prices!

This is a discussion on Issue with shipping prices! within the osCMax v1.7 Discussion forums, part of the osCMax v1.7 Forums category; Hey all, I am running OSC -Max 1.5 and I have recently started seeing an issue that doesn't seem to ...


Go Back   osCommerce and osCMax shopping cart software forums > osCMax v1.7 Forums > osCMax v1.7 Discussion

Register FAQ Members List Calendar Mark Forums Read


Free community membership! Fast easy FREE membership
Closed Thread

 

LinkBack Thread Tools
  #1  
Old 11-17-2004, 10:12 PM
Member
 
Join Date: Jul 2004
Posts: 30
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
pthurmond
Default Issue with shipping prices!

Hey all, I am running OSC-Max 1.5 and I have recently started seeing an issue that doesn't seem to want to add shipping into the total and it doesn't seem to want to add it when editing or even creating items. The box "Indv. Shipping Price" for each item is always blank, even if the database itself shows a value in it.

Also for some reason one of the items I was testing with shows something about individual shipping flat rate when purchasing it and the amount is that same amount I manually added to the database. However another similar item doesn't show the shipping and I did the same thing to it. Any ideas???

-Patrick
__________________
I have no name, I am only PhatGOD!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #2  
Old 11-21-2004, 05:34 PM
New Member
 
Join Date: Nov 2004
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
dnjdesigns
Default

OK this may sound stupid, but I wanted to confirm that you are wanting to use indiv. shipping?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #3  
Old 11-21-2004, 10:02 PM
Member
 
Join Date: Jul 2004
Posts: 30
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
pthurmond
Default

Yes, I am refering to individual shipping however I may have figured it out. I think it may require a shipping weight to be present for it to work. However that doesn't fix the problem of it not showing the Individual Shipping price in the graphical interface that shows up in the database. It doesn't show the price at all when editing items in Administration mode.
__________________
I have no name, I am only PhatGOD!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #4  
Old 01-05-2005, 01:48 PM
New Member
 
Join Date: Nov 2004
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
ozPATT
Default similar problem...

Hi, I have a live shop that I am having some problems with...

in terms of shipping, if flat rate is selected then it seems to want to add it, but i want table rate. I have put the rates in, and i have selected to go by price. for some reason it wont add shipping though. any ideas?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #5  
Old 01-09-2005, 11:11 PM
Member
 
Join Date: Nov 2004
Posts: 89
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
vinces
Default RE: similar problem...

Can you give us more detail? There are many reasons shipping isn't being charged, you are being too general. Please provide more detail and I or somebody else may be able to help you out.
__________________
Vince
http://www.inkyvinny.com
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #6  
Old 06-25-2005, 07:48 AM
tex tex is offline
Lurker
 
Join Date: Nov 2004
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
tex
Default RE: similar problem...

I confirmed that the "Individual Shipping" method will not use the specified individual shipping prices unless the sum of the weights of all items in the cart is non-zero. I made a small hack to always ensure there is a non-zero weight. You should not use this hack if you do indeed have items that are zero weight.

Edit the file catalog/includes/classes/shopping_cart.php and add the 2 lines below (refer to the "ADD THIS LINE" comments)...

Code:
          $this->weight_virtual += ($qty * $products_weight) * $no_count;// ICW CREDIT CLASS;
          $this->weight_virtual += 0.001;  // ADD THIS LINE
Code:
          $this->weight += ($qty * $products_weight);
          $this->weight += 0.001;  // ADD THIS LINE
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #7  
Old 07-13-2005, 01:55 PM
New Member
 
Join Date: Apr 2005
Posts: 15
Thanks: 1
Thanked 2 Times in 1 Post
Rep Power: 0
zododo
Default Re: RE: similar problem...

Hi,

I just installed OSC 1.7, and evrything is working fine but the table rate. What I'm trying to do is adding table rates by price, but when I check the radio button in admin, it cannot calculate at all, no matter how much in my shopping cart, the table shipping rate is 0. To make it work, I have to check weight instead. Does anyone there knows how to make table rate work with price if possible? Thanks a milliion!


Jeff
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #8  
Old 10-02-2005, 05:22 PM
New Member
 
Join Date: Sep 2004
Posts: 5
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
kguske
Default

Table shipping by price works fine for me in 1.7.

You have to set the table method to price and define the rates as an array like:

18:2.00,40:4,60:6,10000:0.00

Which means that a total of up to $18 costs $2 for shipping, $18.01 - $40 costs $4, $40.01 - $60 costs $6, and over $60 (i.e. up to 10,000) is free.

You may also wish to check the order in which shipping is applied in the Order Total configuration, but that should only affect the amount that determines which table rate is applied.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Closed Thread

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
Prices default to USD crashfellow osCommerce 2.2 Modification Help 4 08-03-2005 08:28 AM
Product prices are all $0 adam231 osCommerce 2.2 Installation Help 4 10-21-2004 02:08 AM
UPS Special Shipping code - need to reduce prices by percent dasher99 osCommerce 2.2 Modification Help 0 12-03-2003 03:18 PM
prices added are with tax, not net of tax Rodland osCommerce 2.2 Installation Help 1 03-24-2003 09:14 PM
not showing prices!!!!! Anonymous osCommerce 2.2 Modification Help 1 10-17-2002 08:23 PM


All times are GMT -8. The time now is 09:38 PM.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO
http://www.oscmax.com/forums/
Copyright 2008 osCMax