You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 15/umbraco-commerce/how-to-guides/dynamically-priced-products.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ Sometimes products do not have a fixed price. Depending on the customer's requir
9
9
This guide shows you how to implement dynamically priced products in Umbraco Commerce.
10
10
11
11
{% hint style="info" %}
12
-
This guide is not a direct follow-on from the [getting started tutorial](../tutorials/build-a-store/overview.md). It is assumed that your store is set up in a similar structure.
12
+
This guide is not a direct follow-on from the [getting started tutorial](../tutorials/build-a-store/README.md). It is assumed that your store is set up in a similar structure.
Copy file name to clipboardExpand all lines: 15/umbraco-commerce/how-to-guides/overview.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,5 +8,5 @@ In this section, we will provide a series of How-To Guides, showcasing how to pe
8
8
9
9
## Available guides
10
10
11
-
<tabledata-card-size="large"data-view="cards"><thead><tr><thalign="center"></th><thdata-hiddendata-card-targetdata-type="content-ref"></th></tr></thead><tbody><tr><tdalign="center">Migrate from Vendr to Umbraco Commerce</td><td><ahref="migrate-from-vendr-to-umbraco-commerce/">migrate-from-vendr-to-umbraco-commerce</a></td></tr><tr><tdalign="center">Configure SQLite support</td><td><ahref="configure-sqlite-support.md">configure-sqlite-support.md</a></td></tr><tr><tdalign="center">Add item to Cart</td><td><ahref="add-item.md">add-item.md</a></td></tr><tr><tdalign="center">Update Cart</td><td><ahref="update-cart.md">update-cart.md</a></td></tr>
12
-
<tr><tdalign="center">Delete item from Cart</td><td><ahref="delete-item.md">delete-item.md</a></td></tr><tr><tdalign="center">Limit Order Line Quantity</td><td><ahref="limit-orderline-quantity.md">limit-orderline-quantity.md</a></td></tr><tr><tdalign="center">Use an alternative database for Umbraco Commerce tables</td><td><ahref="use-an-alternative-database-for-umbraco-commerce-tables.md">use-an-alternative-database-for-umbraco-commerce-tables.md</a></td></tr></tbody></table>
11
+
<tabledata-card-size="large"data-view="cards"><thead><tr><thalign="center"></th><thdata-hiddendata-card-targetdata-type="content-ref"></th></tr></thead><tbody><tr><tdalign="center">Migrate from Vendr to Umbraco Commerce</td><td><ahref="../upgrading/migrate-from-vendr-to-umbraco-commerce/README.md">migrate-from-vendr-to-umbraco-commerce</a></td></tr><tr><tdalign="center">Configure SQLite support</td><td><ahref="configure-sqlite-support.md">configure-sqlite-support.md</a></td></tr><tr><tdalign="center">Creating a Custom Shopping Cart</td><td><ahref="../tutorials/build-a-store/custom-cart.md">custom-cart.md</a></td></tr>
12
+
<tr><tdalign="center">Limit Order Line Quantity</td><td><ahref="limit-orderline-quantity.md">limit-orderline-quantity.md</a></td></tr><tr><tdalign="center">Use an alternative database for Umbraco Commerce tables</td><td><ahref="use-an-alternative-database-for-umbraco-commerce-tables.md">use-an-alternative-database-for-umbraco-commerce-tables.md</a></td></tr></tbody></table>
Copy file name to clipboardExpand all lines: 15/umbraco-commerce/how-to-guides/personalized-products.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ This will be broken down into the following steps:
13
13
* Register a UI extension to display the value in the Backoffice.
14
14
15
15
{% hint style="info" %}
16
-
This guide is not a direct follow-on from the [getting started tutorial](../tutorials/build-a-store/overview.md). It is assumed that your store is set up in a similar structure.
16
+
This guide is not a direct follow-on from the [getting started tutorial](../tutorials/build-a-store/README.md). It is assumed that your store is set up in a similar structure.
Copy file name to clipboardExpand all lines: 15/umbraco-commerce/how-to-guides/product-bundles.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ description: Learn how to implement product bundles in Umbraco Commerce.
7
7
Product bundles are Umbraco Commerces' way of creating composite products. This feature allows you to create a product that consists of multiple sub-products. The sub-products can be optional or mandatory, and you can define the quantity of each sub-product. The final order line will be a composite order line of the selected primary product and its sub-product options.
8
8
9
9
{% hint style="info" %}
10
-
This guide is not a direct follow-on from the [getting started tutorial](../tutorials/build-a-store/overview.md). It is assumed that your store is set up in a similar structure.
10
+
This guide is not a direct follow-on from the [getting started tutorial](../tutorials/build-a-store/README.md). It is assumed that your store is set up in a similar structure.
Copy file name to clipboardExpand all lines: 15/umbraco-commerce/reference/taxes/calculated-tax-rates.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,10 +8,10 @@ This option allows you to dynamically calculate the tax obligations of an order
8
8
9
9
When using calculated rate taxes, taxes are calculated as a single price adjustment against the order total price and will not offer any breakdown.
10
10
11
-
Calculated tax rates are configured using **Tax Calculation Methods**. A tax calculation method provides a connection to a third-party calculation service via a [Sales Tax Provider](../../key-concepts/sales-taxt-providers.md). The sales tax provider passes the order details to the calculation service and returns the tax amount to be applied to the order.
11
+
Calculated tax rates are configured using **Tax Calculation Methods**. A tax calculation method provides a connection to a third-party calculation service via a [Sales Tax Provider](../../key-concepts/sales-tax-providers.md). The sales tax provider passes the order details to the calculation service and returns the tax amount to be applied to the order.
12
12
13
13
{% hint style="info" %}
14
-
Before you can configure a tax calculation method, you will need to install at least one [sales tax provider](../../key-concepts/sales-taxt-providers.md).
14
+
Before you can configure a tax calculation method, you will need to install at least one [sales tax provider](../../key-concepts/sales-tax-providers.md).
15
15
16
16
A TaxJar example is provided on GitHub at [https://github.com/umbraco/Umbraco.Commerce.SalesTaxProviders.TaxJar](https://github.com/umbraco/Umbraco.Commerce.SalesTaxProviders.TaxJar)
Copy file name to clipboardExpand all lines: 15/umbraco-commerce/release-notes/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ In this section, we have summarized the changes to Umbraco Commerce released in
11
11
If there are any breaking changes or other issues to be aware of when upgrading they are also noted here.
12
12
13
13
{% hint style="info" %}
14
-
If you are upgrading to a new major version, check the breaking changes in the [Version Specific Upgrade Notes](upgrading/version-specific-upgrades.md) article.
14
+
If you are upgrading to a new major version, check the breaking changes in the [Version Specific Upgrade Notes](../upgrading/version-specific-upgrades.md) article.
Copy file name to clipboardExpand all lines: 15/umbraco-commerce/tutorials/build-a-store/configure-store.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ If your business operates in multiple regions, setting up locations helps:
22
22
* Configure stores for different locations with separate languages, shipping addresses, regional offers, local regulations, and payment gateways.
23
23
* Ship products from different locations. The system can be set up to route orders to the nearest warehouse based on the customer’s location.
24
24
25
-
### Steps to set up a location:
25
+
### Steps to set up a location
26
26
27
27
1. Select your store from the **Stores** menu in the **Settings** section. In this case, *Umbraco Swag Store*.
28
28
2. Go to **Locations** under the Store.
@@ -38,9 +38,9 @@ If your business operates in multiple regions, setting up locations helps:
38
38
39
39
Order Status tracks the progression of an order. It helps both the store owner and customers track the order's progress from the moment it is placed until it is delivered (or returned).
40
40
41
-
When you first set up Umbraco Commerce, it comes with predefined order statuses to help manage the order lifecycle. These statuses include _New_, _Completed_, _Cancelled_, and _Error_. The statuses can be customized based on your specific business requirements.
41
+
When you first set up Umbraco Commerce, it comes with predefined order statuses to help manage the order lifecycle. These statuses include *New*, *Completed*, *Cancelled*, and *Error*. The statuses can be customized based on your specific business requirements.
42
42
43
-
### Steps to create an order status:
43
+
### Steps to create an order status
44
44
45
45
1. Go to **Order Statuses** under the Store.
46
46
2. Click **Create Order Status**.
@@ -57,7 +57,7 @@ Payment Methods define the payment options available in the store. By default, U
57
57
58
58
Umbraco Commerce also supports the integration of different third-party payment gateways. For more information, see the [Umbraco Commerce Payment Providers Documentation](../../../../commerce-add-ons/payment-providers/README.md).
59
59
60
-
### Steps to set up a payment method:
60
+
### Steps to set up a payment method
61
61
62
62
1. Go to **Payment Methods** under the Store.
63
63
2. Click **Create Payment Method**.
@@ -75,7 +75,7 @@ Shipping methods determine how customers receive their orders. Setting up shippi
75
75
76
76
By default, Umbraco Commerce comes with the basic Pickup option. For more information on the integration for different providers, see the [Umbraco Commerce Shipping providers Documentation](../../../../commerce-add-ons/shipping-providers/README.md).
77
77
78
-
### Steps to create a shipping method:
78
+
### Steps to create a shipping method
79
79
80
80
1. Go to **Shipping Methods** under the Store.
81
81
2. Click **Create Shipping Method**.
@@ -91,7 +91,7 @@ By default, Umbraco Commerce comes with the basic Pickup option. For more inform
91
91
92
92
Setting up a country involves configuring settings related to shipping, payment methods, tax rates, localization, legal compliance requirements, and so on for that specific country.
93
93
94
-
### Steps to set up a country:
94
+
### Steps to set up a country
95
95
96
96
1. Go to **Countries** under the Store.
97
97
2. Click **Create Country**.
@@ -105,9 +105,9 @@ Setting up a country involves configuring settings related to shipping, payment
105
105
106
106
## Setting up a Currency
107
107
108
-
Setting up currency is essential for ensuring that prices are displayed and transactions are processed accurately. For information on configuring an exchange rate service, see the [Currency Exchange Rate Service Provider](../key-concepts/currency-exchange-rate-service-providers.md) article.
108
+
Setting up currency is essential for ensuring that prices are displayed and transactions are processed accurately. For information on configuring an exchange rate service, see the [Currency Exchange Rate Service Provider](../../key-concepts/currency-exchange-rate-service-providers.md) article.
109
109
110
-
### Steps to set up a currency:
110
+
### Steps to set up a currency
111
111
112
112
1. Go to **Currencies** under the Store.
113
113
2. Click **Create Currency**.
@@ -120,9 +120,9 @@ Setting up currency is essential for ensuring that prices are displayed and tran
120
120
121
121
## Setting up Taxes
122
122
123
-
Tax setup is crucial for compliance with local regulations and for ensuring that your pricing is accurate and transparent. You can set up tax rates for each jurisdiction where you must collect tax. For more information, see the [Tax Sources](../key-concepts/tax-sources.md) article.
123
+
Tax setup is crucial for compliance with local regulations and for ensuring that your pricing is accurate and transparent. You can set up tax rates for each jurisdiction where you must collect tax. For more information, see the [Tax Sources](../../key-concepts/tax-sources.md) article.
124
124
125
-
### Steps to set up taxes:
125
+
### Steps to set up taxes
126
126
127
127
1. Go to **Taxes** under the Store.
128
128
2. Click **Create Tax Class**.
@@ -137,7 +137,7 @@ Tax setup is crucial for compliance with local regulations and for ensuring that
137
137
138
138
Defines the different **Email**, **Print**, and **Export** templates available for the store. These templates help maintain consistency and professionalism in communication with customers and facilitate data handling.
139
139
140
-
### Steps to create an Email Template:
140
+
### Steps to create an Email Template
141
141
142
142
1. Expand the **Templates** folder under the Store.
Copy file name to clipboardExpand all lines: 15/umbraco-commerce/upgrading/version-specific-upgrades.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,12 +8,12 @@ description: >-
8
8
This page covers specific upgrade documentation for when migrating to major 15 of Umbraco Commerce.
9
9
10
10
{% hint style="info" %}
11
-
If you are upgrading to a new minor or patch version, you can find information about the breaking changes in the [Release Notes](../release-notes.md) article.
11
+
If you are upgrading to a new minor or patch version, you can find information about the breaking changes in the [Release Notes](../release-notes/README.md) article.
12
12
{% endhint %}
13
13
14
14
## Version Specific Upgrade Notes History
15
15
16
-
#### 15.0.0
16
+
#### 15.0.0
17
17
18
18
* API method calls will need to use the async alternatives
0 commit comments