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: README.md
+37-14Lines changed: 37 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ Feed Generator is a service that simplifies the process of generating product fe
4
4
5
5
## Installation
6
6
7
-
Module compartible with both Adobe Commerce SaaS and PaaS.
7
+
Module compatible with both Adobe Commerce SaaS and PaaS.
8
8
9
9
Please see [INSTALL.md](INSTALL.md) for more details.
10
10
@@ -191,22 +191,22 @@ For that go to Settings and click on clean the cache button.
191
191
192
192
#### Fixed Variables
193
193
194
-
Header and Footer currently have a support to variables (Only 1 actualy)
194
+
Header and Footer currently have a support to variables (Only 1 actually)
195
195
196
196
`{{DATA}}` - Current Date/Time - will be in format 2024-10-21T14:45:30.123Z
197
197
198
198
### Dynamic variables
199
199
200
200
Variables are defined using double curly braces (`{{ }}`) and correspond to fields in the Adobe Commerce GraphQL product output. For example, `{{sku}}` will be replaced with the product's SKU.
201
201
202
-
##### Additonal parameters
202
+
##### Additional parameters
203
203
204
204
###### Repeating Tags with `count`
205
205
206
206
When a variable corresponds to an array, you can use the `count` property to repeat the XML tag for each element in the array. For instance, using `count=5` will generate up to 5 tags, each containing a different value from the array.
207
207
208
208
```xml
209
-
<g:brand>{{manufacturer count="5"}}</g:brand>
209
+
<image>{{media_gallery.url count="2"}}</image>
210
210
```
211
211
212
212
##### Selecting Specific Array Elements with `index`
@@ -226,28 +226,51 @@ To select a specific element from an array, use the `index` property. This will
226
226
Add attributes.value is an Array of attributes, to get specific attribute, you can use "code" parameter and define attribute with which code you want to use.
<g:google_product_category><![CDATA[Arts & Entertainment > Hobbies & Creative Arts > Musical Instruments > Electronic Musical Instruments]]></g:google_product_category>
0 commit comments