Payment / Shipping / Handling Item Prices
type
-
- Type
- string
Meaning of the number: :typoscript:`count`: the items count
weight: the calculated weight in Gramm *price: the total products 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. Where7.is the minimum price taken for5 shippingcosts when at least one product in the basket comes from the page with that UID.Example:
price based on minimum weight for page 155plugin.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
-
- Type
- array
the
shippingcalcprice calculations to be used. (see chapter shipping cost calculation)Example:
price calculation deferred to line 10 of another configurationplugin.tt_products.shipping { 10.title = Parcel 10.price.calc { use = 10 } }Copied!
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 configurationplugin.tt_products.shipping { 10.title = Parcel 10.price.type = count 10.price.noCostsAmount = 200 10.price.1 = 1.5 }Copied!