Importing into Matrix
Importing into a Matrix field is like many other Field Types, however, this reference provides a practical example of how to structure your feed properly.
In this example, we'll be importing 2 Entries, which have a single Matrix field called Content Builder. The entry itself has a Featured Image (Assets)
and Description (Rich Text)
field. Our Page Builder Matrix field has 3 Blocktypes:
- Heading
- Size
(Dropdown field)
- Heading
(Plain Text field)
- Size
- Copy
- Copy
(Rich Text field)
- Copy
- Images
- Image
(Assets field)
- Image
Example Feed Data
The below data is what we'll use for this guide:
<?xml version="1.0" encoding="UTF-8"?>
<entries>
<entry>
<Title>Guide first entry example</Title>
<FeaturedImage>ocean_sunset.jpg</FeaturedImage>
<Description>Lorem ipsum dolor sit amet, consectetur adipiscing elit</Description>
<Matrix>
<MatrixBlock>
<HeadingSize>h1</HeadingSize>
<HeadingText>This is an H1 tag</HeadingText>
</MatrixBlock>
<MatrixBlock>
<Copy><![CDATA[<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam lectus nisl, mattis et luctus ut, varius vitae augue. Integer non lacinia urna, nec molestie enim. Aenean ultricies mattis ligula vel consectetur. Etiam ultrices fringilla lectus nec mollis.</p> <p>Nunc elit magna, semper ac faucibus ut, volutpat eu augue. Vivamus id nibh facilisis, fermentum massa vitae, rhoncus mi. Praesent sit amet efficitur dui.</p>]]></Copy>
</MatrixBlock>
<MatrixBlock>
<HeadingSize>h2</HeadingSize>
<HeadingText>This is an H2 tag</HeadingText>
</MatrixBlock>
<MatrixBlock>
<Images>
<Image>img_fjords.jpg</Image>
<Image>recent-images-11.jpg</Image>
</Images>
</MatrixBlock>
<MatrixBlock>
<Copy><![CDATA[<p>Etiam lectus nisl, mattis et luctus ut, varius vitae augue. Integer non lacinia urna, nec molestie enim. Aenean ultricies mattis ligula vel consectetur. Etiam ultrices fringilla lectus nec mollis.</p> <p>Nunc elit magna, semper ac faucibus ut, volutpat eu augue. Vivamus id nibh facilisis, fermentum massa vitae, rhoncus mi. Praesent sit amet efficitur dui.</p>]]></Copy>
</MatrixBlock>
</Matrix>
</entry>
<entry>
<Title>Guide second entry example</Title>
<FeaturedImage>ocean_sunset.jpg</FeaturedImage>
<Description>Lorem ipsum dolor sit amet, consectetur adipiscing elit</Description>
<Matrix>
<MatrixBlock>
<HeadingSize>h3</HeadingSize>
<HeadingText>This is an H3 tag</HeadingText>
</MatrixBlock>
<MatrixBlock>
<Images>
<Image>recent-images-11.jpg</Image>
</Images>
</MatrixBlock>
<MatrixBlock>
<Copy><![CDATA[<p>Integer non lacinia urna, nec molestie enim. Aenean ultricies mattis ligula vel consectetur. Etiam ultrices fringilla lectus nec mollis.</p> <p>Nunc elit magna, semper ac faucibus ut, volutpat eu augue. Vivamus id nibh facilisis, fermentum massa vitae, rhoncus mi. Praesent sit amet efficitur dui.</p>]]></Copy>
</MatrixBlock>
<MatrixBlock>
<HeadingSize>h3</HeadingSize>
<HeadingText>This is an H3 tag</HeadingText>
</MatrixBlock>
<MatrixBlock>
<Copy><![CDATA[<p>Aenean ultricies mattis ligula vel consectetur. Etiam ultrices fringilla lectus nec mollis.</p> <p>Nunc elit magna, semper ac faucibus ut, volutpat eu augue. Vivamus id nibh facilisis, fermentum massa vitae, rhoncus mi. Praesent sit amet efficitur dui.</p>]]></Copy>
</MatrixBlock>
<MatrixBlock>
<Images>
<Image>img_fjords.jpg</Image>
</Images>
</MatrixBlock>
</Matrix>
</entry>
</entries>
{
"entry": [
{
"Title": "Guide first entry example",
"FeaturedImage": "ocean_sunset.jpg",
"Description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit",
"Matrix": {
"MatrixBlock": [
{
"HeadingSize": "h1",
"HeadingText": "This is an H1 tag"
},
{
"Copy": {}
},
{
"HeadingSize": "h2",
"HeadingText": "This is an H2 tag"
},
{
"Images": {
"Image": [
"img_fjords.jpg",
"recent-images-11.jpg"
]
}
},
{
"Copy": {}
}
]
}
},
{
"Title": "Guide second entry example",
"FeaturedImage": "ocean_sunset.jpg",
"Description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit",
"Matrix": {
"MatrixBlock": [
{
"HeadingSize": "h3",
"HeadingText": "This is an H3 tag"
},
{
"Images": {
"Image": "recent-images-11.jpg"
}
},
{
"Copy": {}
},
{
"HeadingSize": "h3",
"HeadingText": "This is an H3 tag"
},
{
"Copy": {}
},
{
"Images": {
"Image": "img_fjords.jpg"
}
}
]
}
}
]
}
Note on structure
You'll notice we're using Matrix
and MatrixBlock
for the nodes that contain our content. You can name these whatever you like, however, it's important that you retain this structure. Most importantly, the inner node (MatrixBlock
) must be all named the same to help preserve content in the same order as your feed.
For example, you should not do:
<MatrixContent>
<RichTextBlock>
<Copy>Lorem ipsum...</Copy>
<Caption>Some more text.</Caption>
</RichTextBlock>
<ImageBlock>
<Image>img_fjords.jpg</Image>
</ImageBlock>
</MatrixContent>
{
"RichTextBlock": {
"Copy": "Lorem ipsum...",
"Caption": "Some more text."
},
"ImageBlock": {
"Image": "img_fjords.jpg"
}
}
Instead, use the same named node to surround the content for each block:
<MatrixContent>
<MatrixBlock>
<Copy>Lorem ipsum...</Copy>
<Caption>Some more text.</Caption>
</MatrixBlock>
<MatrixBlock>
<Image>img_fjords.jpg</Image>
</MatrixBlock>
</MatrixContent>
{
"MatrixBlock": [
{
"Copy": "Lorem ipsum...",
"Caption": "Some more text."
},
{
"Image": "img_fjords.jpg"
}
]
}
Choose either the XML or JSON (depending on your preference), and save as a file in the root of your public directory. We'll assume its http://craft.local/matrix-feed.xml
.
Setup your Feed
With your feed data in place, go to Feed Me's main control panel screen, and add a new feed.
Enter the following details:
- Name - Matrix Feed
- Feed URL -
http://craft.local/matrix-feed.xml
- Feed Type - XML or JSON
- Primary Element -
entry
- Element Type - Entries
- Commerce Product Type - Pages (or similar)
- Import Strategy -
Create new elements
, andUpdate existing elements
- Passkey - Leave as generated
- Backup - Turn on
Click the Save & Continue button to set up the primary element.
Primary Element
The primary element can be confusing at first, but its vitally important to ensure Feed Me can hone in on the content in your feed correctly. Refer to Primary Element → for a detailed explanation.
Enter the following details:
- Primary Element -
/entries/entry
- Pagination URL -
No Pagination URL
Click the Save & Continue button to set up the field mapping.
Field Mapping
Use the below screenshot as a guide for the data we want to map to our Entry and Matrix fields.
Click the Save & Import button to begin importing your content.
Importing your Content
Wait for the feed processing to finish. Remember, you can always navigate away from this confirmation screen.
TIP
If you're having issues, or seeing errors at this point, look at the Troubleshooting section.
You should now have 2 brand new Entries with our Matrix data populated.