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
{{ message }}
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: src/cloud/project/sendgrid.md
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,9 @@ s2.example.com IN CNAME <s2.example.sendgrid.net>
24
24
{: .bs-callout-tip}
25
25
You can find Sendgrid details for your account in the Onboarding UI. Use the `https://cloud.magento.com/project/_project-id_/setup/project_details` URL and select the **Project Details** > **Hosting Info** tab.
26
26
27
-
The CNAME records resolve to the Domain Keys Identified Mail (DKIM) and Sender Policy Framework (SPF) records managed by SendGrid, so that spam filters are less likely to inhibit your messages.
27
+
For {{site.data.var.ece}} Pro, the CNAME records resolve to the Domain Keys Identified Mail (DKIM) and Sender Policy Framework (SPF) records managed by SendGrid, so that spam filters are less likely to inhibit your messages.
28
+
29
+
{: .bs-callout-info}
30
+
**SendGrid DKIM signatures** are not available in Commerce Cloud Starter. They are only available in Commerce Cloud Pro.
28
31
29
32
Magento does not support allowlists, but you can review the [Sender Policy Framework (SPF)](https://sendgrid.com/docs/Glossary/spf.html) guidelines to improve delivery.
Copy file name to clipboardExpand all lines: src/guides/v2.3/config-guide/cli/config-cli-subcommands-catalog-sync.md
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,9 @@ title: Catalog Sync
5
5
6
6
Magento compiles catalog data into tables using indexers. This process is automatically [triggered by several events](https://docs.magento.com/user-guide/system/index-management-events.html), such as changes to a product's price or inventory levels. To allow some Magento services to use that catalog data, a catalog sync process runs hourly. The catalog sync process exports product data from the Magento server to SaaS services on an ongoing basis. For example, the [Product Recommendations](https://docs.magento.com/user-guide/marketing/product-recommendations.html) feature needs up-to-date catalog information so that it can accurately return recommendations with correct names, pricing, and availability. Use the command-line interface to trigger the catalog sync and reindex product data for consumption by SaaS services.
7
7
8
+
{:.bs-callout-info}
9
+
To use the catalog sync commands, you must have an [API key and a SaaS environment configured](https://docs.magento.com/user-guide/system/saas.html). If you do not have an API key and have not configured a SaaS environment, you can still reindex product data but that data will not be exported to SaaS services.
10
+
8
11
The commands used to sync catalog data are part of the `magento/saas-export` package. See [Install and configure Product Recommendations]({{ site.baseurl }}/recommendations/install-configure.html) for more information.
Copy file name to clipboardExpand all lines: src/guides/v2.3/migration/bk-migration-guide.md
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -21,8 +21,6 @@ We have developed the **Magento 2 Data Migration Tool** to help you efficiently
21
21
### Extensions and custom code {#migrate-extensions-code}
22
22
We have been working hard with the development community to help you use your Magento 1 extensions in Magento 2. Now we are proud to present the [Magento Marketplace](https://marketplace.magento.com/){:target="_blank"}, where you can download or purchase the latest versions of your favorite extensions.
23
23
24
-
Also, we have developed the [Code Migration Toolkit](https://github.com/magento/code-migration){:target="_blank"}, which will help to port your extensions and custom code to Magento 2, significantly reducing your efforts.
25
-
26
24
More information on developing extensions for Magento 2 is available in the [PHP Developer Guide]({{ page.baseurl }}/extension-dev-guide/bk-extension-dev-guide.html){:target="_blank"}.
27
25
28
26
### Themes and customizations {#migrate-themes-customizations}
Copy file name to clipboardExpand all lines: src/guides/v2.3/rest/tutorials/configurable-product/create-configurable-product.md
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,15 @@ The sample payload does not contain the price or the size. These attributes will
19
19
20
20
The `visibility` attribute is set to 4, meaning the product can be found by browsing or searching. This value will be changed for the simple products.
21
21
22
+
The below table shows the equivalent code for the visibility attribute
23
+
24
+
Visibility | Code
25
+
--- | ---
26
+
`Not Visible Individually` | 1
27
+
`Catalog` | 2
28
+
`Search` | 3
29
+
`Catalog, Search` | 4
30
+
22
31
{:.bs-callout-info}
23
32
Before you using this code sample, verify that the attribute values are the same in your installation. See [Get the list of attributes defined in an attribute searchCriteria]({{ page.baseurl }}/rest/tutorials/configurable-product/plan-product.html#get-attributes) for more information.
Copy file name to clipboardExpand all lines: src/guides/v2.3/rest/tutorials/configurable-product/plan-product.md
+85-4Lines changed: 85 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -53,15 +53,19 @@ We'll make several calls to find the values needed to create the product
53
53
54
54
The sample data provides multiple attribute sets, including Default, Top, and Bottom. To assign the Top attribute set to the product, we need to know the corresponding `attribute_set_id`.
55
55
56
-
Use the following call to search for the attribute set named `Top`.
56
+
Use the following call to search for the attribute set named `Top` and `entity_type_id` equals to `4`.
57
+
By default, the `catalog_product` entity has the `entity_type_id` value as `4`.
57
58
58
59
**Endpoint:**
59
60
60
61
```html
61
62
GET <host>/rest/<store_code>/V1/eav/attribute-sets/list?
The response contains almost 3,000 lines and the above is a part of the response from the endpoint. The following table provides a summary of the attributes that are relevant in this tutorial.
109
162
110
163
Admin label | Selected value | Attribute ID | attribute_code | Attribute value
111
164
--- | --- | --- | --- | ---
@@ -125,13 +178,41 @@ You must assign the product to one or more categories to enable customers to fin
125
178
126
179
Use the following call to search for all categories (`id` is greater than or equal to `0`).
0 commit comments