diff --git a/src/_data/toc/b2b-developer-guide.yml b/src/_data/toc/b2b-developer-guide.yml index 90f3132fd81..c6cd81498a8 100644 --- a/src/_data/toc/b2b-developer-guide.yml +++ b/src/_data/toc/b2b-developer-guide.yml @@ -71,3 +71,5 @@ pages: - label: Develop B2B extensions url: /b2b/extensions.html + - label: B2B Release Notes + url: /release-notes/b2b-release-notes.html diff --git a/src/guides/v2.3/config-guide/multi-site/ms_websites.md b/src/guides/v2.3/config-guide/multi-site/ms_websites.md index 9ab81a186b5..dcf2ebff11f 100644 --- a/src/guides/v2.3/config-guide/multi-site/ms_websites.md +++ b/src/guides/v2.3/config-guide/multi-site/ms_websites.md @@ -24,7 +24,7 @@ Creating a root category is optional, but we show how to do it in this tutorial {% collapsible To create a root category: %} 1. Log in to the Magento Admin as a user authorized to create categories. -1. Click **Products** > **Categories**. +1. Click **Catalog** > **Categories**. 1. Click **Add Root Category**. 1. In the **Category Name** field, enter a unique name to identify this category. 1. Make sure **Enable Category** is set to **Yes**. diff --git a/src/guides/v2.3/extension-dev-guide/build/composer-integration.md b/src/guides/v2.3/extension-dev-guide/build/composer-integration.md index ea6b6ebe708..41202aa4595 100644 --- a/src/guides/v2.3/extension-dev-guide/build/composer-integration.md +++ b/src/guides/v2.3/extension-dev-guide/build/composer-integration.md @@ -35,7 +35,7 @@ Here is the example of composer.json file. "AFL-3.0" ], "require": { - "php": "~7.1.3||~7.2.0||~7.3.0" + "php": "~7.2.0||~7.3.0" }, "autoload": { "files": [ "registration.php" ], diff --git a/src/guides/v2.3/extension-dev-guide/build/create_component.md b/src/guides/v2.3/extension-dev-guide/build/create_component.md index 35cc4a81d79..585a6905ad9 100644 --- a/src/guides/v2.3/extension-dev-guide/build/create_component.md +++ b/src/guides/v2.3/extension-dev-guide/build/create_component.md @@ -51,7 +51,7 @@ Refer to [Module version dependencies]({{ page.baseurl }}/extension-dev-guide/ve "name": "your-name/module-Acme", "description": "Test component for Magento 2", "require": { - "php": "~7.1.3||~7.2.0", + "php": "~7.2.0||~7.3.0", "magento/module-store": "102.1", "magento/module-catalog": "102.1", "magento/module-catalog-inventory": "102.1", diff --git a/src/guides/v2.3/extension-dev-guide/package/package_module.md b/src/guides/v2.3/extension-dev-guide/package/package_module.md index e744de538a3..05c6c9c1c27 100644 --- a/src/guides/v2.3/extension-dev-guide/package/package_module.md +++ b/src/guides/v2.3/extension-dev-guide/package/package_module.md @@ -49,7 +49,7 @@ The following example is a `composer.json` for a metapackage: "version": "2.0.0", "type": "metapackage", "require": { - "php": "~7.1.3|~7.2.0", + "php": "~7.2.0||~7.3.0", "zendframework/zend-stdlib": "~2.4.6", "zendframework/zend-code": "~2.4.6", "zendframework/zend-server": "~2.4.6", @@ -99,7 +99,7 @@ The following example is a `composer.json` file for a module: "AFL-3.0" ], "require": { - "php": "~7.1.3|~7.2.0", + "php": "~7.2.0||~7.3.0", "magento/framework": "~100.0.4" }, "autoload": { diff --git a/src/guides/v2.3/frontend-dev-guide/layouts/xml-manage.md b/src/guides/v2.3/frontend-dev-guide/layouts/xml-manage.md index de6819ecbc0..d0854cc8d46 100644 --- a/src/guides/v2.3/frontend-dev-guide/layouts/xml-manage.md +++ b/src/guides/v2.3/frontend-dev-guide/layouts/xml-manage.md @@ -456,7 +456,7 @@ Extending layout: In layout files you can change the elements order on a page. This can be done using one of the following: - [`` instruction]({{page.baseurl}}/frontend-dev-guide/layouts/xml-instructions.html#fedg_layout_xml-instruc_ex_mv): allows changing elements' order and parent. -- [`before` and `after` attributes of ``]({{page.baseurl}}/frontend-dev-guide/layouts/xml-instructions.html#fedg_xml-instrux_before-after): allows changing elements' order within one parent. +- [`before` and `after` attributes of ``]({{page.baseurl}}/frontend-dev-guide/layouts/xml-instructions.html#fedg_xml-instrux_before-after): sets the order of elements within a parent. **Example of `` usage:** put the stock availability and SKU blocks next to the product price on a product page. diff --git a/src/guides/v2.3/frontend-dev-guide/translations/translate_theory.md b/src/guides/v2.3/frontend-dev-guide/translations/translate_theory.md index d1b82b9560c..c02e394d8c7 100644 --- a/src/guides/v2.3/frontend-dev-guide/translations/translate_theory.md +++ b/src/guides/v2.3/frontend-dev-guide/translations/translate_theory.md @@ -18,13 +18,13 @@ To ensure that your new string is added to the dictionary and translated, use th For example: ```php - + ``` If your string contains a variable, to add a placeholder for this variable in the dictionary, use syntax similar to the following: ```php - + ``` In this example, the _'Hello %1'_ string is added to the dictionary when the i18n tool is run. diff --git a/src/guides/v2.3/howdoi/checkout/checkout-add-custom-carrier.md b/src/guides/v2.3/howdoi/checkout/checkout-add-custom-carrier.md index c36e738233f..8cfb842da6b 100644 --- a/src/guides/v2.3/howdoi/checkout/checkout-add-custom-carrier.md +++ b/src/guides/v2.3/howdoi/checkout/checkout-add-custom-carrier.md @@ -47,7 +47,7 @@ ComponentRegistrar::register( "name": "vendor/custom-shipping", "description": "Custom shipping module", "require": { - "php": "~7.1.3||~7.2.0", + "php": "~7.2.0||~7.3.0", "magento/framework": "102.0.*", "magento/module-backend": "101.0.*", "magento/module-catalog": "103.0.*", diff --git a/src/guides/v2.3/ui_comp_guide/components/ui-exportbutton.md b/src/guides/v2.3/ui_comp_guide/components/ui-exportbutton.md index 9226653854d..3d5279811fc 100644 --- a/src/guides/v2.3/ui_comp_guide/components/ui-exportbutton.md +++ b/src/guides/v2.3/ui_comp_guide/components/ui-exportbutton.md @@ -3,7 +3,7 @@ group: ui-components-guide title: ExportButton component --- -The ExportButton component implements the ability to export grid data to the specified data format (cvs, xml, and so on). +The ExportButton component implements the ability to export grid data to the specified data format (csv, xml, and so on). ## Configuration options diff --git a/src/marketplace/eqp/v1/help.md b/src/marketplace/eqp/v1/help.md index e34f84e4a78..925212eb50d 100644 --- a/src/marketplace/eqp/v1/help.md +++ b/src/marketplace/eqp/v1/help.md @@ -7,7 +7,7 @@ Use these resources if you need additional help. **Slack:** -- workspace: Magento Community Engineering +- workspace: [Magento Community Engineering](https://opensource.magento.com/slack) - channel: **# marketplace-eqp-api** **Email:**