Kryptronic Software Support Forum

You are viewing this forum as a guest. Login to an existing account, or create a new account, to reply to topics and to create new topics.

#1 08-07-2002 23:15:51

Guest
Guest

Simple shipping? (help)

Can someone tell me how I can make shipping $6 (no matter what is ordered ... 1 or 101 items). It is late and this shipping is throwing me for a loop.

Thanks in advance!

 

#2 08-08-2002 12:05:02

Guest
Guest

Re: Simple shipping? (help)

I to am having fits with a shipping question and since I scoured the boards, I came up with what may be an answer to your question:

It goes in the custom shipping script.

#######################################################################
# Sub Site Store Shipping Custom #
#######################################################################

sub site_store_shipping_custom {

$custom_shipping_method_name = "Standard";
$custom_shipping_method_total = "4.95";

print <<ENDOFTEXT;

<INPUT TYPE="HIDDEN" NAME="trship" VALUE="$custom_shipping_method_name::$custom_shipping_method_total">

The cost to ship your order is $currency_symbol$custom_shipping_method_total.<BR><BR>

ENDOFTEXT

}

#######################################################################
# Return True Value For End Of File #
#######################################################################

1;

 

Board footer