Theme library
For theme partner
What is Theme library?
Theme library help the theme author can build their templates, sections, etc. That help improve the theme more flexible
How to build a theme library
5 step to build a theme library
Install beae app on Shopify store
Start build the first page or section
Export your page or section as file ( Save as file at top bar)
Create beae.json in assets folder in theme with structure below
Upload your export files to assets folder
{
"author": "Kalles",
"logo": "https://cdn.shopify.com/s/files/1/0332/6420/5963/files/kalles.svg",
"website": "https://your-site.com?utm_source=beae",
"library": {
"categories": [
{
"id": "landing",
"title": "Landing"
},
{
"id": "home",
"title": "Home"
}
],
"pages": [
{
"title": "The first page",
"thumbnail": "CqpElqxn3v.jpg",
//You also add the link. Eg: "thumbnail": "https://domain.com/folder/CqpElqxn3v.jpg",
"categories": [
"home"
]
"source": "MyTemplate.beae"
// Your export file from Beae Page Builder
//Add your export file to assets folder
// You also can add the link instead. Eg: "source": "https://domain.com/folder/MyTemplate.beae"
},
...// More pages below
],
"sections": [
{
"title": "The first section",
"thumbnail": "https://dev.beae.com/storage/elements-public/posts/pages/thumbnails/1011/2021/11/17/CqpElqxn3v.jpg",
"source": "MySection.beae",
// Your export file from Beae Page Builder
//Add your export file to assets folder
// You also can add the link instead. Eg: "source": "https://domain.com/folder/MySection.beae"
"categories": [
"landing",
"home"
]
},
... //More sections below
]
}
}
Last updated
Was this helpful?