You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.
Is there a way to select the "Real Time Shipping" option, and add a small handling fee onto that ? Meaning, if actual shipping charges are $ 8.00, and I wanted to add $1.50 onto that ... I really don't want to add anything else to the actual prices of my products ...
Thanks in advance
Offline
I was wondering the same thing. Also I was wondering is there any way that you can also ad a option to shipping for Customer Pickup?
Thanks so much.
Yeah - Assuming you're using the UPS real time calculations (which are wrong,
by the way. Kryptonic knows about it but can't do anything and I gave up on
UPS after 3 responses were - just use our website - which isn't what is needed
since the CCP calls a back door program on UPS's website to return the rate.)
Anyway, you just add a statement into the
cgi-binlibrarymodulessite_store_ship_dis.pl module,
site_store_shipping_ups subroutine like:
# SA - added a fee for handling
$ups_services_rate = $ups_services_rate + 4;
I put it before the
$selected_count++;
statement.
THe rates aren't wrong, they are calculated based only on to zip, from zip, service and weight. The UPS front end uses other options like size to make fine adjustments to the price. We're looking at using their tools in the next release to get a more accurate rate.
Offline