diff --git a/15/umbraco-commerce/how-to-guides/dynamically-priced-products.md b/15/umbraco-commerce/how-to-guides/dynamically-priced-products.md index 571d69bda31..1ae5eb3beb9 100644 --- a/15/umbraco-commerce/how-to-guides/dynamically-priced-products.md +++ b/15/umbraco-commerce/how-to-guides/dynamically-priced-products.md @@ -9,7 +9,7 @@ Sometimes products do not have a fixed price. Depending on the customer's requir This guide shows you how to implement dynamically priced products in Umbraco Commerce. {% hint style="info" %} -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. +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. {% endhint %} ## Capturing User Input diff --git a/15/umbraco-commerce/how-to-guides/overview.md b/15/umbraco-commerce/how-to-guides/overview.md index 472ba99c910..c917fdd6f34 100644 --- a/15/umbraco-commerce/how-to-guides/overview.md +++ b/15/umbraco-commerce/how-to-guides/overview.md @@ -8,5 +8,5 @@ In this section, we will provide a series of How-To Guides, showcasing how to pe ## Available guides - -
Migrate from Vendr to Umbraco Commercemigrate-from-vendr-to-umbraco-commerce
Configure SQLite supportconfigure-sqlite-support.md
Add item to Cartadd-item.md
Update Cartupdate-cart.md
Delete item from Cartdelete-item.md
Limit Order Line Quantitylimit-orderline-quantity.md
Use an alternative database for Umbraco Commerce tablesuse-an-alternative-database-for-umbraco-commerce-tables.md
+ +
Migrate from Vendr to Umbraco Commercemigrate-from-vendr-to-umbraco-commerce
Configure SQLite supportconfigure-sqlite-support.md
Creating a Custom Shopping Cartcustom-cart.md
Limit Order Line Quantitylimit-orderline-quantity.md
Use an alternative database for Umbraco Commerce tablesuse-an-alternative-database-for-umbraco-commerce-tables.md
diff --git a/15/umbraco-commerce/how-to-guides/personalized-products.md b/15/umbraco-commerce/how-to-guides/personalized-products.md index 083eb09217b..1f4d82e01ab 100644 --- a/15/umbraco-commerce/how-to-guides/personalized-products.md +++ b/15/umbraco-commerce/how-to-guides/personalized-products.md @@ -13,7 +13,7 @@ This will be broken down into the following steps: * Register a UI extension to display the value in the Backoffice. {% hint style="info" %} -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. +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. {% endhint %} ## Capturing a Message diff --git a/15/umbraco-commerce/how-to-guides/product-bundles.md b/15/umbraco-commerce/how-to-guides/product-bundles.md index 88429b3671e..c631688e2ed 100644 --- a/15/umbraco-commerce/how-to-guides/product-bundles.md +++ b/15/umbraco-commerce/how-to-guides/product-bundles.md @@ -7,7 +7,7 @@ description: Learn how to implement product bundles in Umbraco Commerce. 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. {% hint style="info" %} -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. +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. {% endhint %} ## Product Setup diff --git a/15/umbraco-commerce/reference/taxes/calculated-tax-rates.md b/15/umbraco-commerce/reference/taxes/calculated-tax-rates.md index 18411ce1202..96144f6eb11 100644 --- a/15/umbraco-commerce/reference/taxes/calculated-tax-rates.md +++ b/15/umbraco-commerce/reference/taxes/calculated-tax-rates.md @@ -8,10 +8,10 @@ This option allows you to dynamically calculate the tax obligations of an order When using calculated rate taxes, taxes are calculated as a single price adjustment against the order total price and will not offer any breakdown. -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. +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. {% hint style="info" %} -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). +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). A TaxJar example is provided on GitHub at [https://github.com/umbraco/Umbraco.Commerce.SalesTaxProviders.TaxJar](https://github.com/umbraco/Umbraco.Commerce.SalesTaxProviders.TaxJar) {% endhint %} diff --git a/15/umbraco-commerce/release-notes/README.md b/15/umbraco-commerce/release-notes/README.md index 5fbc91e3101..61e576d51e5 100644 --- a/15/umbraco-commerce/release-notes/README.md +++ b/15/umbraco-commerce/release-notes/README.md @@ -11,7 +11,7 @@ In this section, we have summarized the changes to Umbraco Commerce released in If there are any breaking changes or other issues to be aware of when upgrading they are also noted here. {% hint style="info" %} -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. +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. {% endhint %} ## Release History diff --git a/15/umbraco-commerce/tutorials/build-a-store/configure-store.md b/15/umbraco-commerce/tutorials/build-a-store/configure-store.md index 4217eb10775..1bd3239ab7d 100644 --- a/15/umbraco-commerce/tutorials/build-a-store/configure-store.md +++ b/15/umbraco-commerce/tutorials/build-a-store/configure-store.md @@ -22,7 +22,7 @@ If your business operates in multiple regions, setting up locations helps: * Configure stores for different locations with separate languages, shipping addresses, regional offers, local regulations, and payment gateways. * Ship products from different locations. The system can be set up to route orders to the nearest warehouse based on the customer’s location. -### Steps to set up a location: +### Steps to set up a location 1. Select your store from the **Stores** menu in the **Settings** section. In this case, *Umbraco Swag Store*. 2. Go to **Locations** under the Store. @@ -38,9 +38,9 @@ If your business operates in multiple regions, setting up locations helps: 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). -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. +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. -### Steps to create an order status: +### Steps to create an order status 1. Go to **Order Statuses** under the Store. 2. Click **Create Order Status**. @@ -57,7 +57,7 @@ Payment Methods define the payment options available in the store. By default, U 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). -### Steps to set up a payment method: +### Steps to set up a payment method 1. Go to **Payment Methods** under the Store. 2. Click **Create Payment Method**. @@ -75,7 +75,7 @@ Shipping methods determine how customers receive their orders. Setting up shippi 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). -### Steps to create a shipping method: +### Steps to create a shipping method 1. Go to **Shipping Methods** under the Store. 2. Click **Create Shipping Method**. @@ -91,7 +91,7 @@ By default, Umbraco Commerce comes with the basic Pickup option. For more inform 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. -### Steps to set up a country: +### Steps to set up a country 1. Go to **Countries** under the Store. 2. Click **Create Country**. @@ -105,9 +105,9 @@ Setting up a country involves configuring settings related to shipping, payment ## Setting up a Currency -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. +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. -### Steps to set up a currency: +### Steps to set up a currency 1. Go to **Currencies** under the Store. 2. Click **Create Currency**. @@ -120,9 +120,9 @@ Setting up currency is essential for ensuring that prices are displayed and tran ## Setting up Taxes -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. +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. -### Steps to set up taxes: +### Steps to set up taxes 1. Go to **Taxes** under the Store. 2. Click **Create Tax Class**. @@ -137,7 +137,7 @@ Tax setup is crucial for compliance with local regulations and for ensuring that 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. -### Steps to create an Email Template: +### Steps to create an Email Template 1. Expand the **Templates** folder under the Store. 2. Go to **Email Templates**. diff --git a/15/umbraco-commerce/tutorials/build-a-store/create-product.md b/15/umbraco-commerce/tutorials/build-a-store/create-product.md index 928e8131c71..d913cea07ae 100644 --- a/15/umbraco-commerce/tutorials/build-a-store/create-product.md +++ b/15/umbraco-commerce/tutorials/build-a-store/create-product.md @@ -66,4 +66,4 @@ If you haven't already, you'll need to allow the product Document Type to be a c ![Product Page](../images/blendid/product_page.png) -With the product created, you can now move on to [Implementing a Shopping Cart](cart-management/overview.md). +With the product created, you can now move on to [Implementing a Shopping Cart](./cart.md). diff --git a/15/umbraco-commerce/upgrading/version-specific-upgrades.md b/15/umbraco-commerce/upgrading/version-specific-upgrades.md index 6dd27916eff..31564064fe6 100644 --- a/15/umbraco-commerce/upgrading/version-specific-upgrades.md +++ b/15/umbraco-commerce/upgrading/version-specific-upgrades.md @@ -8,12 +8,12 @@ description: >- This page covers specific upgrade documentation for when migrating to major 15 of Umbraco Commerce. {% hint style="info" %} -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. +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. {% endhint %} ## Version Specific Upgrade Notes History -#### 15.0.0 +#### 15.0.0 * API method calls will need to use the async alternatives