Shopping Cart - Checkout Shipping Address

General ShopSite user discussion
Post Reply
dgroff
Posts: 28
Joined: Fri May 27, 2011 8:43 am

Shopping Cart - Checkout Shipping Address

Post by dgroff »

At the Checkout - Step 1 of 2 screen I want the Shipping Address check box "Check here if billing and shipping are the same" defaulted to be checked. How do I make this change?
dgroff
Posts: 28
Joined: Fri May 27, 2011 8:43 am

Re: Shopping Cart - Checkout Shipping Address

Post by dgroff »

And if a user unchecked the box to insert a different shipping address I want a text box for the user can insert a credit card number. I am trying to set it up so if someone buys something they can send it to an address other than their own and charge it to their credit card.
dgroff
Posts: 28
Joined: Fri May 27, 2011 8:43 am

Re: Shopping Cart - Checkout Shipping Address

Post by dgroff »

I have looked under Commerce > Order System > Checkout

All I see though is the text box (Use Billing Text) that goes next to the checkbox.
dgroff
Posts: 28
Joined: Fri May 27, 2011 8:43 am

Re: Shopping Cart - Checkout Shipping Address

Post by dgroff »

Heres is the solution to my first question:

You can add the following javascript to:

Commerce Setup -> Order System -> Checkout - Text at the bottom of the Checkout screen

<script type="text/javascript">
window.onload = function(){
if(document.billing.usebilling.checked == false){
document.billing.usebilling.click();
}
}
</script>
dgroff
Posts: 28
Joined: Fri May 27, 2011 8:43 am

Re: Shopping Cart - Checkout Shipping Address

Post by dgroff »

Now if a user unchecks the checkbox, I need a label & textbox to appear for a credit card phone number to be entered and a message to appear.

That way we can call the credit card company to verify they have that address on their card.

Now I looked under Commerce > Order System > Checkout but I don't see where I can add another text box.
Jim
Site Admin
Posts: 4953
Joined: Fri Aug 04, 2006 1:42 pm
Location: Utah

Re: Shopping Cart - Checkout Shipping Address

Post by Jim »

The billing information is already on the form, whether they check or uncheck the check box "Check here if billing and shipping are the same", and that information already contains the phone number for the shopper which by default is a required field.
Are you going to be asking for the phone number of the credit card company? If that is the case that would really be unusual. I have never been asked for a credit card company phone number in the 35+ years I have been using credit cards. The number listed on the back of the card is for the cardholder to use for service not for merchants. Your payment gateway should be able to validate if the address given matches the address on file for the card.

Custom fields can be added to the cart checkout screen in the Pro version of ShopSite (Manager and Starter don't have the feature). Look at the section "Custom Checkout Fields" found on Commerce Setup > Order System > Checkout.
dgroff
Posts: 28
Joined: Fri May 27, 2011 8:43 am

Re: Shopping Cart - Checkout Shipping Address

Post by dgroff »

Jim,

I figured out how to do everything I was trying to do. And the reason we are doing this is because we don't want to be liable for any chargebacks. And authorize.net and other payment gateways to my knowledge do not check non-primary addresses so any addtional addresses have to be manually checked.
thus... we need that info to verify with the CC issuer that we can indeed ship there.

Other major sites that do this are tigerdirect.com and newegg.com
bakerman
Posts: 68
Joined: Fri Feb 23, 2007 1:02 pm
Location: Ohio

Re: Shopping Cart - Checkout Shipping Address

Post by bakerman »

Customers frequently need to ship to different addresses than their billing... especially companies that have multiple shipping locations.

We have also found this to be the best way to verify different shipping addresses with the card issuer to protect us from fraud.
Post Reply