The Official Website of AgoraCart and Agora.cgi
AgoraCart.com Demos Download AgoraCart User Manuals & Wiki Gold Members Forum Go Gold Now! Gold Version Memberships

AgoraCart.com

About
Features
Download
Payment Gateways
Send a Donation
Founders Club
BLOG: News & Updates

Showcases & Demos

AgoraCart Demos
Shop Live Stores

Downloads & Add-ons

Gold Version Downloads
DBwizz Database Mgr.
AgoraCart.com Store

Help & Support

User Manuals
Gold Version Users Forum
Gold Version Chat
Tech Support
Certified Agora Pros
Certified Designers
Hire a Freelancer

Gold Version Members

Member Benefits
Join Today!
Gold Members Home
Gold Version Users Forum
Gold Version Chat Rooms
Gold Version Downloads

For Store Owners

Merchant Accounts
Cool Resources
Advertise Here
"Powered by" Logos
Web Hosting Search

Misc.

Contact Us
MEET's Talking Guide
The Ancient Greek Agora






AgoraCart Free User Forums

This is the official FAQ and Cool Tips guide For the AgoraCart shopping Cart software


Official Sponsors of the AgoraCart Project:

       


RegisterSearchFAQLog in
Reply to topic Page 1 of 1
free ground shipping but charge for others
Author Message
Reply with quote
Post 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.

View user's profile Send private message
Reply with quote
Post  
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
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger ICQ Number
Reply with quote
Post 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?

View user's profile Send private message
Reply with quote
Post  
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
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger ICQ Number
Reply with quote
Post 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?

View user's profile Send private message
Reply with quote
Post  
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
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger ICQ Number
Reply with quote
Post 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

View user's profile Send private message
Reply with quote
Post 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?

View user's profile Send private message
Reply with quote
Post  
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
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger ICQ Number
Reply with quote
Post 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>


View user's profile Send private message
Reply with quote
Post  
What gateway are you using??


_________________
God Bless!
Bonnie - AgoraCart Moderator

Get a Gold Membership
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger ICQ Number
Reply with quote
Post 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.

View user's profile Send private message
Reply with quote
Post  
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
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger ICQ Number
Reply with quote
Post 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.

View user's profile Send private message
Reply with quote
Post  
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
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger ICQ Number
Reply with quote
Post 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.

View user's profile Send private message
Reply with quote
Post  
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
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger ICQ Number
Display posts from previous:
Reply to topic Page 1 of 1
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum