Payment / Shipping / Handling Item Prices 

type

type
Type
string

Meaning of the number: count: the items count weight: the calculated weight in Gramm * price: the total products price

WherePIDMinPrice

WherePIDMinPrice
Type
int+

Set a minimum price for shipping if there is an item in the basket which is from the sysfoldepaymentActivityr of this PID. Where 155 is the PID and 7.5 is the minimum price taken for shipping costs when at least one product in the basket comes from the page with that PID.

Example:

price based on minimum weight for page 155
plugin.tt_products.shipping { 
     10.title = Parcel 
     10.price.type = weight 
     10.price.WherePIDMinPrice.155 = 7.5 
     10.price.1 = 1.5 
     10.price.500 = 2.5 
     10.price.1000 = 3.5 
}
Copied!

calc

calc
Type
array

the shippingcalc price calculations to be used. (see chapter shipping cost calculation)

Example:

price calculation deferred to line 10 of another configuration
plugin.tt_products.shipping { 
     10.title = Parcel 
     10.price.calc {
         use = 10
     }
}
Copied!

noCostsAmount

noCostsAmount
Type
double

When the total amount for the products reaches this value then no costs will be calculated.

Example:

price calculation deferred to line 10 of another configuration
plugin.tt_products.shipping { 
     10.title = Parcel 
     10.price.type = count 
     10.price.noCostsAmount = 200 
     10.price.1 = 1.5 
}
Copied!