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.
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!
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;