close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

Add shipping charge based on state?

Thread began 9/18/2012 10:28 am by Joe Lowery | Last modified 9/19/2012 10:49 am by Jason Byrnes | 1145 views | 4 replies |

Joe Lowery

Add shipping charge based on state?

My client wants to add a $3 charge if she's delivering to a state west of Mississippi. Would I have to use a custom calculation for that? Can you give me an example?

Thanks - Joe

Sign in to reply to this post

Jason ByrnesWebAssist

eCart stores the shipping state selected in a session called "eCartCheckoutForm_shipping_state_province"

you would need to hand code an array of all the states to the west of the mississippi:


php:
$toTheWest = array();

$toTheWest[] = "CA";
$toTheWest[] = "WA";
$toTheWest[] = "UT";
$toTheWest[] = "TX";

etc...



then set a session if the selected shipping state is in the $toTheWest array:

php:
$_SESSION['toTheWest'] = 0;

if(in_array($_SESSION['eCartCheckoutForm_shipping_state_province'], $toTheWest)) $_SESSION['toTheWest'] = 1;




in eCart create a new shipping rule as:
Based on Session Variable value:
if the session variable "toTheWest is "=" a value of "1"

Flat rate charge of "3"

Sign in to reply to this post

Joe Lowery

Thanks, Jason - I'll give that a shot and let you know how it goes.

Sign in to reply to this post

Joe Lowery

Jason - is the placement of the $toTheWest array creation and the session setting critical? I was going to put it on the checkout page before the WA redirect. Would that work?

Thanks - Joe

Sign in to reply to this post

Jason ByrnesWebAssist

The code to create the array needs to be on the confirm page, after the code that sets the eCartCheckoutForm_shipping_state_province session variable

Sign in to reply to this post

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...