Author |
Message |
protectm
Newbie - One Blade
Joined: 22 Jul 2005
Posts: 11
|
 free ground shipping but charge for others
How do I offer free ground shipping but charge for all other shipping? I am using UPS exclusively.
|
Fri Jul 22, 05 2:26 pm |
|
 |
scottcrew
Moderator
Joined: 13 Feb 2004
Posts: 7516
Location: The West Side of MI USA
|
One way to do it would be to turn off UPS ground in the Payment gateway and re-do the shipping option, on the order form, for UPS ground to something like:
Code:
OPTION VALUE="FREE Ground ">FREE Ground Shipping</OPTION>
HTH!
_________________ God Bless!
Bonnie - AgoraCart Moderator
Get a Gold Membership
|
Fri Jul 22, 05 5:11 pm |
 |
 |
protectm
Newbie - One Blade
Joined: 22 Jul 2005
Posts: 11
|
 Flat fees for shipping?
I would like to be able to charge a flat fee for my shipping.
$0.00 for Residential Ground
$11.00 for 2Day and
$17.00 for Next day
I am using UPS exclusively for all of my shipping. How do I set this up in my shipping manager?
|
Sat Jul 23, 05 1:51 pm |
|
 |
scottcrew
Moderator
Joined: 13 Feb 2004
Posts: 7516
Location: The West Side of MI USA
|
1. Turn off the SBW in the shipping settings area of the manager.
2. In the custom shipping logic box put:
Code:
@sc_shipping_logic = ( "Ground|1-|||0.00",
"2Day|1-|||11.00",
"1Day|1-|||17.00");
#
$shipping_price = &calculate_shipping($temp_total,
$total_quantity, $total_measured_quantity);
3. Turn off all of the shipping options in the Payment Gateway...
4. On the order form put in the following options:
Code:
<OPTION VALUE="FREE Ground (Ground)">FREE Ground Shipping</OPTION>
<OPTION VALUE="2 Day Air (2Day) ">2 Day Air </OPTION>
<OPTION VALUE="Next Day Air (1Day)">Next Day Air</OPTION>
HTH!
_________________ God Bless!
Bonnie - AgoraCart Moderator
Get a Gold Membership
|
Sat Jul 23, 05 2:05 pm |
 |
 |
protectm
Newbie - One Blade
Joined: 22 Jul 2005
Posts: 11
|
 Does not work
I turned off all of the shipping options to NO. but, I can not figure out where to put the rest of the code to make everything work. Where does the OPTION VALUE="Free...... go?you said to put it on the order form but where on the order form?
|
Sun Jul 24, 05 4:45 pm |
|
 |
scottcrew
Moderator
Joined: 13 Feb 2004
Posts: 7516
Location: The West Side of MI USA
|
The custom shipping logic code goes in the "Custom Shipping Logic" box in the Shipping Settings area of the manager.
The Shipping selection options need to be placed in your order form after all of the other shipping method options that are there.
Namely, after:
Code:<!--agorascript-pre
if ("$sc_uspsexpressmail" =~ /yes/i) { return
q~<OPTION VALUE="USPS Express Mail (Express)">
USPS Express Mail</OPTION>~;
} else {return '';}
-->
You might want to put a space or 2 between this code and the new code you are putting in.
Make sure that in the Shipping Settings, of the manager, you have "Use the custom shipping logic?" set to "Yes".
HTH!
_________________ God Bless!
Bonnie - AgoraCart Moderator
Get a Gold Membership
|
Mon Jul 25, 05 4:21 am |
 |
 |
protectm
Newbie - One Blade
Joined: 22 Jul 2005
Posts: 11
|
 still not working
I put this code in the shipping logic:
Code:@sc_shipping_logic = ( "Ground|1-|||0.00",
"2Day|1-|||12.00",
"1Day|1-|||19.00");
But anywhere I put this code it does not seem to work:
And I put this code in the order form but I am pretty sure I have it in the wrong place.
Code:<OPTION VALUE="FREE Ground (Ground)">FREE Ground Shipping</OPTION>
<OPTION VALUE="2 Day Air (2Day) ">2 Day Air </OPTION>
<OPTION VALUE="Next Day Air (1Day)">Next Day Air</OPTION>
Is this the correct code to be using and where does it go?
thanks
|
Mon Jul 25, 05 11:32 am |
|
 |
protectm
Newbie - One Blade
Joined: 22 Jul 2005
Posts: 11
|
 Do I put this in the payment gateway?
In the payment gateway I turned off everything. All of the question that say do you offer UPS/FedEx/USPS I answered NO to. Was that the right thing to do. Do I put my shipment selection code in that same area?
|
Mon Jul 25, 05 11:36 am |
|
 |
scottcrew
Moderator
Joined: 13 Feb 2004
Posts: 7516
Location: The West Side of MI USA
|
You did things correctly in the Payment Gateway area of the manager.
You put the shipment selection code in the order form with the other shipping method options.
Please carefully re-read the above posts for proper placement of code specified.
HTH!
_________________ God Bless!
Bonnie - AgoraCart Moderator
Get a Gold Membership
|
Mon Jul 25, 05 11:55 am |
 |
 |
protectm
Newbie - One Blade
Joined: 22 Jul 2005
Posts: 11
|
 Can't Find where to put shipment selection code.
I am unable to figure out where I need to put the shipment selection code. You gave me a piece of code that I am supposed to put the selection code after but I am unable to find where that code is. I think I am missing something very simple and if you could show me where to put this piece of code I would really appreciate it.
Code:<OPTION VALUE="FREE Ground (Ground)">FREE Ground Shipping</OPTION>
<OPTION VALUE="2 Day Air (2Day) ">2 Day Air </OPTION>
<OPTION VALUE="Next Day Air (1Day)">Next Day Air</OPTION>
|
Mon Jul 25, 05 1:24 pm |
|
 |
scottcrew
Moderator
Joined: 13 Feb 2004
Posts: 7516
Location: The West Side of MI USA
|
What gateway are you using??
_________________ God Bless!
Bonnie - AgoraCart Moderator
Get a Gold Membership
|
Mon Jul 25, 05 1:38 pm |
 |
 |
protectm
Newbie - One Blade
Joined: 22 Jul 2005
Posts: 11
|
 payment gateway
I am using an authorize.net payment gateway
My homepage is connected to Agora cart and Agora cart is connected to authorize.net.
|
Mon Jul 25, 05 2:06 pm |
|
 |
scottcrew
Moderator
Joined: 13 Feb 2004
Posts: 7516
Location: The West Side of MI USA
|
Put the shipping options code in the AuthorizeNet-orderform.html file, found in the 'html/forms' directory of the store, right after the following: Code:<SELECT NAME="Ecom_ShipTo_Method">
HTH!
_________________ God Bless!
Bonnie - AgoraCart Moderator
Get a Gold Membership
|
Mon Jul 25, 05 3:05 pm |
 |
 |
protectm
Newbie - One Blade
Joined: 22 Jul 2005
Posts: 11
|
 several products in one box
If a customer orders more than one item how do I set my shipping to calculate both items in one box. For each item ordered it is computing the cost based on one package per item ordered and I can put more than one item in a package.
|
Mon Jul 25, 05 6:19 pm |
|
 |
scottcrew
Moderator
Joined: 13 Feb 2004
Posts: 7516
Location: The West Side of MI USA
|
Well, that is how you said you wanted it done...
How do you really want it to calculate the shipping?
By weight, quantity, cost????
What determines when the shipping charges change???
_________________ God Bless!
Bonnie - AgoraCart Moderator
Get a Gold Membership
|
Tue Jul 26, 05 5:22 am |
 |
 |
protectm
Newbie - One Blade
Joined: 22 Jul 2005
Posts: 11
|
 Final Change
I have decided to just go with the ship by weight. I will change things once I have determined an Average price that I can charge for my shipping. So, What I need to figure out is how to for up to two items in the same package. Right now it puts each item in an individual package.
Thanks for your help.
|
Tue Jul 26, 05 9:15 am |
|
 |
scottcrew
Moderator
Joined: 13 Feb 2004
Posts: 7516
Location: The West Side of MI USA
|
If you are going to ship by weight via UPS, just use the SBW module and get the real-time shipping quotes from UPS.
You can also set up a handling fee in the Shipping Settings manager.
HTH!
_________________ God Bless!
Bonnie - AgoraCart Moderator
Get a Gold Membership
|
Tue Jul 26, 05 12:50 pm |
 |
 |
|