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 2
Goto page 1, 2  Next
Remove shipping completely
Author Message
Reply with quote
Post Remove shipping completely 
How can I just removing shipping completely from the cart. The sites that will be using it for purely eletronic forms of purchase, and the only time they should ever have to type their address will be for the billing section, so would like to get rid of anything regarding shipping in the cart, I don't want to have to do a hack where the weight being less than 1 to make it not caculate, I just dont want shipping period.


_________________
-Karl Blessing
View user's profile Send private message Visit poster's website AIM Address MSN Messenger ICQ Number
Reply with quote
Post  
You can't remove it completely, but you can fool the cart a bit
by adding a bit of code on the form.
In place of the shipping method options you will need to put in a
hidden field similar to this:
<INPUT TYPE="hidden" NAME="Ecom_ShipTo_Method" VALUE="none">

This way, the customer will not see a shipping option and the cart has it's shipping method defined.

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  
You know, I can't belive I'm a webdeveloper, and I didn't think of that. It confused me earlier cuz I seen someone show a hack to make it not calculate it but still show it, but of course i'm assuming that was for a mixed store that dealt in both physical and eletronic goods.

by the way thanks.


_________________
-Karl Blessing
View user's profile Send private message Visit poster's website AIM Address MSN Messenger ICQ Number
Reply with quote
Post  
Hi,

Where to keep this code?
<INPUT TYPE="hidden" NAME="Ecom_ShipTo_Method" VALUE="none">

I mean in which file?

Thanks,hegu

View user's profile Send private message
Reply with quote
Post  
on the order form of the gateway(s) you are using.
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  
Thank you for your reply.

I searched all the forms. Couldn't find. I am using 2checkout.

Which file exactly please?

Thanks,hegu

View user's profile Send private message
Reply with quote
Post  
Hello? Anyone please?

Where exactly i should put that hidden tag and wich file?

Thanks,hegu

View user's profile Send private message
Reply with quote
Post  
I thought I had posted this info.

On the order form, find the following:
Quote:

<td colspan=3>Method:&nbsp;&nbsp;&nbsp;
<SELECT NAME="Ecom_ShipTo_Method">
<OPTION VALUE="UPS Ground (GNDRES)" CHECKED>
UPS Ground</OPTION>
<OPTION VALUE="UPS 2nd Day (2DA)">
UPS 2nd Day</OPTION>
<OPTION VALUE="UPS Next Day (1DA)">
UPS Next Day</OPTION>
<OPTION VALUE="FEDEX Priority Overnight (Express,Priority Overnight)">
FedEx Priority Overnight</OPTION>
<OPTION VALUE="FEDEX Express (Express,Express Saver)">
FedEx Express Saver</OPTION>
<OPTION VALUE="FEDEX Ground (Ground,Ground)">
FedEx Ground</OPTION>
<OPTION VALUE="FEDEX Home Delivery (Home,Home)">
FedEx Home Delivery</OPTION>
<OPTION VALUE="USPS Parcel Post (Parcel)">
USPS Parcel Post</OPTION>
<OPTION VALUE="USPS Priority Mail (Priority)">
USPS Priority Mail</OPTION>
<OPTION VALUE="USPS Express Mail (Express)">
USPS Express Mail</OPTION>
</SELECT></TD>


Replace it with:
Quote:

<INPUT TYPE="hidden" NAME="Ecom_ShipTo_Method" VALUE="none">


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  
Thanks.

God Bless YOU!

I will try it and let you know.

Thanks,hegu

View user's profile Send private message
Reply with quote
Post  
But still i am getting this error:

---------
You forgot to fill in Shipping Address State.


You forgot to fill in Shipping Address Zip.
---------------

What to do?

Thanks,hegu

View user's profile Send private message
Reply with quote
Post  
Hello Scottcrew?

Any ideas?

Thanks,hegu

View user's profile Send private message
Reply with quote
Post  
Hi,

OK. I make two more hidden tags:

----------------
<INPUT TYPE="hidden" NAME="Ecom_ShipTo_Postal_PostalCode" VALUE="none">
<INPUT TYPE="hidden" NAME="Ecom_ShipTo_Postal_StateProv" VALUE="none">
-----------------

But getting this code and i have been trying to remove this code from 'Step Two' stage:

----------
Please verify the above information. When you are confident that it is correct, click the 'Secure Orderform' button to enter your payment information.
State: none
Zip: none
-------------

Can anybody tell this please?

Thanks,hegu

View user's profile Send private message
Reply with quote
Post  
The changes for that need to be made in the 2checkout-order_lib.pl
You will need to look carefully at the code to determine the area to change.
You will not be able to get rid of the step two page, just be able to remove the State and Zip info.
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  
I see only State: and Zip: related code in 2checkout-order_lib.pl.

NOT this line :

Please verify the above information. When you are confident that it is correct, click the 'Secure Orderform' button to enter your payment information.

Instead of this line i see this : $messages{'ordcnf_06'}
Around 241 line.

Where to edit this message?

Thanks,hegu

View user's profile Send private message
Reply with quote
Post  
The messages can be found in the agora.setup.db file near the end of the file.
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  
Hi,

Thanks. Everything working except i am getting error when i am taking out this code:

What exactly i can remove from this code?

------------------
sub checkout_verification_table {
local ($rslt)="";
$rslt = "<table border=0 width=100%>\n<tr>\n";
$rslt.= "<td width=\"50%\" align=right>State:</td>\n";
$rslt.= '<td width = "50%" align=left>' .
$form_data{'Ecom_ShipTo_Postal_StateProv'} . "&nbsp;</td>\n";
$rslt.= "</tr>\n";
$rslt.= "<tr>\n";
$rslt.= "<td width=\"50%\" align=right>Zip:</td>\n";
$rslt.= '<td width = "50%" align=left>' .
$form_data{'Ecom_ShipTo_Postal_PostalCode'} . "&nbsp;</td>\n";
$rslt.= "</tr>\n";
$rslt.= "</table>\n";
return $rslt;
}
---------------------------

I really appreciate all your time scottcrew.

Thanks,hegu

View user's profile Send private message
Reply with quote
Post  
hegu,
You will need to edit a few things in the 2checkout-order_lib.pl file.

Look for the following bit of code:

Quote:

@sc_order_form_required_fields = (
"Ecom_ShipTo_Postal_StateProv",
"Ecom_ShipTo_Postal_PostalCode");


This bit of code determines what fields are required to accept the form for processing.
Change it to:
Quote:

@sc_order_form_required_fields = ();


Now, look for the following:
Quote:

sub checkout_verification_table {
local ($rslt)="";
$rslt = "<table border=0 width=100%>\n<tr>\n";
$rslt.= "<td width=\"50%\" align=right>State:</td>\n";
$rslt.= '<td width = "50%" align=left>' .
$form_data{'Ecom_ShipTo_Postal_StateProv'} . "&nbsp;</td>\n";
$rslt.= "</tr>\n";
$rslt.= "<tr>\n";
$rslt.= "<td width=\"50%\" align=right>Zip:</td>\n";
$rslt.= '<td width = "50%" align=left>' .
$form_data{'Ecom_ShipTo_Postal_PostalCode'} . "&nbsp;</td>\n";
$rslt.= "</tr>\n";
$rslt.= "</table>\n";
return $rslt;
}



Change to:
Quote:

sub checkout_verification_table {
local ($rslt)="";
$rslt = "<table border=0 width=100%>\n<tr>\n";
$rslt.= "<td width=\"50%\" align=right></td>\n";
$rslt.= "<td width=\"50%\" align=left>&nbsp;</td>\n";
$rslt.= "</tr>\n";
$rslt.= "<tr>\n";
$rslt.= "<td width=\"50%\" align=right></td>\n";
$rslt.= "<td width=\"50%\" align=left>&nbsp;</td>\n";
$rslt.= "</tr>\n";
$rslt.= "</table>\n";
return $rslt;
}


Let me know how it goes!
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  
Yes. It worked fine :D

One last question (hopefully) before testing the cart:

Program settings > Cart display:

i see drop down columns under 'Define the Screen Displays of Cart Contents:'

What are these exactly? Even though i turned off, shipping weight is displaying in the cart.

Thanks,hegu

View user's profile Send private message
Reply with quote
Post  
There are 3 columns in the top area:
What to Display | Multiply by QTY? | Column Heading

In the "What To Display" column, where it says "shipping", click on the select box and choose "BLANK".
Then click the "Submit" button.
That should remove the shipping column from the cart contents page.

Do the same to the lower area to remove the shipping from the order emails.

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  
Scott,

There is no BLANK in drop down list. Only yes, no

I selected no. still it was diaplaying on web pages.

I am using AgoraCart DELUXE Store Manager ver. 4.0K-4b Standard installed using cpanel.

Thanks,hegu



Last edited by hegu on Mon Jul 19, 04 5:16 am; edited 1 time in total
View user's profile Send private message
Reply with quote
Post  
The first column! Click on the box that says "shipping" NOT the box next to it which is the 2nd column that asks "Multiply by Qty".
HTH!



Last edited by scottcrew on Mon Jul 19, 04 5:27 am; edited 1 time in total

_________________
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  
Scott,

What is this 'Multiply by QTY?'. What exactly it does?

I am changing it to yes or no and i am not sure what it is doing?

Thanks,hegu

View user's profile Send private message
Reply with quote
Post  
It will multiply the value of the field, specified in the "What to Display" column, by the quantity ordered.
That is not the column you want to change to remove the shipping. Click on the actual box that contains the word, "shipping" and then select "BLANK".
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  
Now I got it.

I am going to do a test purchase.

Thank you VERY much for all your advice and time.

Thanks, hegu

View user's profile Send private message
Reply with quote
Post  
I'm having the same issue using Authorize.net. I've eliminated the need to fill in the shipping method, state, zip fields but they are still showing. Can't we get rid of "Please select where your order will be shipped and click 'Next' and the boxes for them to enter this info?
Thank you,
Robb


_________________
Robb Kelly
bft@q45.net
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:
Reply to topic Page 1 of 2
Goto page 1, 2  Next
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