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
This topic is locked: you cannot edit posts or make replies. Page 1 of 1
Free shipping
Author Message
Reply with quote
Post Free shipping 
Can anyone help me? I want the shipping costs working like this :

Above 50 shipping is free.
Under 50 i want to charge 2.35 plus a specific shipping price for some bigger products.

I set the value i want to add in the Shipping Price field of the product and in the "Handling Charge to be added to all orders" i have 2.35

All was working great till i decided free shipping for orders above 50. I set the shipping logic as :

Code:

@sc_shipping_logic =
  ("|1-49.99|||2.35",
   "|50-|||0.00");

$shipping_price = &calculate_shipping($temp_total,
                  $total_quantity, $total_measured_quantity);


Now the shipping price of the product is not being added to the under 50 total. Above 50 is working great (Free).

Can anyone help?
Thanks in advance.
Manuel

View user's profile Send private message
Reply with quote
Post  
What is the URL to the store and what else do you have set up for the shipping on a per product level?

Your basic set up is kinda flawed and you are going to need to be a bit more specific in how your "bigger items" are handled.
Please be as specific as you can about how you want the shipping calculated.


_________________
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 and thank you for answering.

The url is www.cuca-online.com

I have 2.35 euros in the "Handling Charge to be added to all orders". Then in some products (bigger and more expensive to send) i add a value to the 2.35 euros. That value i want to add is set in the "Shipping Price field" of the product. It always worked fine till i decided free shipping above 50 euros.

I want to keep that logic running for orders under 50 euros. Above that value i want free shipping. But when i set custom shipping logic to YES i cant get the "Shipping Price field" of the product to be considered and added to the "Handling Charge to be added to all orders".

I tried almost all possible configurations in AgoraCart Shipping Manager but they all failed to run as i want it.

Hope i've been more explicit.
Thanks again
Rocha

View user's profile Send private message
Reply with quote
Post  
One thing I did forget to ask is if you charge the handling fee even on orders over $50?

One way this can be handled is some fairly very custom logic:
Code:

if ($temp_total < 50.00) {
$shipping_price = $total_measured_quantity;
}

if ($temp_total > 49.99 {
$shipping_price = 0.00;
}


Make sure that you have the 2.35 in the "Handling Charge" field. That will add the handling to all orders, including the orders over $50.



Last edited by scottcrew on Mon Jan 17, 11 5:50 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
Display posts from previous:
This topic is locked: you cannot edit posts or make replies. Page 1 of 1
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