diff --git a/docs/content/advanced/backend/discounts/index.md b/docs/content/advanced/backend/discounts/index.md index eb0187eb33..05e7835f00 100644 --- a/docs/content/advanced/backend/discounts/index.md +++ b/docs/content/advanced/backend/discounts/index.md @@ -12,8 +12,8 @@ Discounts can be limited by a set of configurations and conditions. For example, There are three types of discounts: -1. Percentage discount: remove a percentage of the customer’s total checkout amount. -2. Fixed discount: remove a fixed amount either of the customer’s total checkout amount or of every product in the cart that the discount can be applied to. +1. Percentage discount: remove a percentage of the price every product in the cart that the discount can be applied to. +2. Fixed discount: remove a fixed amount either of the customer’s total checkout amount or of the price every product in the cart that the discount can be applied to. 3. Free shipping discount: remove any shipping amount from the customer’s order during checkout. ### Example Use Cases @@ -58,8 +58,8 @@ Some of the `DiscountRule` entity’s important attributes are: - `type` is an enum string indicating the type of the discount. It must be either `fixed`, `percentage`, or `free_shipping`. - `value` is the value to be discounted. The value of this depends on the value of `type`: - - If `type` is `fixed`, `value` will be the amount to be removed either from the total or from each product. - - If `type` is `percentage`, `value` will be the percentage to be removed from the total. + - If `type` is `fixed`, `value` will be the amount to be removed either from the total or from each product this discount is applied to. + - If `type` is `percentage`, `value` will be the percentage to be removed from each product this discount is applied to. - If `type` is `free_shipping`, `value` will be 0. - `conditions` is an array of all discount conditions, if there are any. diff --git a/docs/content/user-guide/discounts/create.mdx b/docs/content/user-guide/discounts/create.mdx index cca987fd4d..b74f01f50c 100644 --- a/docs/content/user-guide/discounts/create.mdx +++ b/docs/content/user-guide/discounts/create.mdx @@ -21,8 +21,8 @@ This opens a form with collapsible sections to fill in different information abo In this section, you have to select the discount type. There are three types: -1. **Percentage:** discount a specific percentage of the cart total. -2. **Fixed amount:** discount a specific amount either from the cart total or from each item that complies with the discount conditions. After choosing this type, a new field Allocation will show where you can choose how the discount should be applied. +1. **Percentage:** discount a specific percentage of the price of each item that complies with the discount conditions. +2. **Fixed amount:** discount a specific amount either from the cart total or from the price each item that complies with the discount conditions. After choosing this type, a new field Allocation will show where you can choose how the discount should be applied. 3. **Free shipping:** Remove any shipping amount available during checkout. Choose the type of the discount and fill in any additional fields if necessary. @@ -31,7 +31,7 @@ Choose the type of the discount and fill in any additional fields if necessary. In this section, you have to enter general but required information related to the discount: -1. In the “Choose valid regions” field, choose the regions this discount should be applied in. You must select at least one region. +1. In the “Choose valid regions” field, choose the regions this discount should be applied in. You must select at least one region. For the Fixed Discount type, you can only pick one region. For other types you can select more than one region. 2. In the Code field, enter the code that the customers have to enter during checkout for the discount to be applied. Only uppercase letters and numbers are allowed. 3. If you chose Percentage for Discount Type earlier, enter the percentage that should be discounted in the Percentage field. 4. If you chose Fixed Amount for Discount Type earlier, enter the amount that should be discounted in the Amount field.