Payment / Shipping / Handling Item Prices 

price.type 

price.type

price.type
Type
string

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

price.WherePIDMinPrice 

price.WherePIDMinPrice

price.WherePIDMinPrice
Type
int+

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

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!

price.calc 

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!

price.noCostsAmount 

price.noCostsAmount

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