diff --git a/locales/en.default.schema.json b/locales/en.default.schema.json index 6fea0e51abf..6dfc8cbee88 100644 --- a/locales/en.default.schema.json +++ b/locales/en.default.schema.json @@ -721,6 +721,9 @@ "featured-collection": { "name": "Featured collection", "settings": { + "header_text": { + "content": "Text" + }, "title": { "label": "Heading", "default": "Featured collection" @@ -743,6 +746,9 @@ "label": "Uppercase" } }, + "header_collection": { + "content": "Collection layout" + }, "collection": { "label": "Collection" }, @@ -800,14 +806,10 @@ "info": "An app is required for ratings. [Learn more](https://help.shopify.com/manual/online-store/themes/theme-structure/theme-features#featured-collection-show-product-rating)" }, "enable_quick_buy": { - "label": "Enable quick add button", - "info": "Optimal with popup or drawer cart type." - }, - "header_mobile": { - "content": "Mobile Layout" + "label": "Quick add" }, "columns_mobile": { - "label": "Columns", + "label": "Mobile columns", "options__1": { "label": "1" }, @@ -816,7 +818,7 @@ } }, "swipe_on_mobile": { - "label": "Carousel" + "label": "Mobile carousel" } }, "presets": { diff --git a/sections/featured-collection.liquid b/sections/featured-collection.liquid index 954bc50b067..c4ebcfc9fff 100644 --- a/sections/featured-collection.liquid +++ b/sections/featured-collection.liquid @@ -206,6 +206,10 @@ "groups": ["header", "footer"] }, "settings": [ + { + "type": "header", + "content": "t:sections.featured-collection.settings.header_text.content" + }, { "type": "inline_richtext", "id": "title", @@ -271,6 +275,10 @@ ], "default": "body" }, + { + "type": "header", + "content": "t:sections.featured-collection.settings.header_collection.content" + }, { "type": "collection", "id": "collection", @@ -294,6 +302,22 @@ "default": 4, "label": "t:sections.featured-collection.settings.columns_desktop.label" }, + { + "type": "select", + "id": "columns_mobile", + "default": "2", + "label": "t:sections.featured-collection.settings.columns_mobile.label", + "options": [ + { + "value": "1", + "label": "t:sections.featured-collection.settings.columns_mobile.options__1.label" + }, + { + "value": "2", + "label": "t:sections.featured-collection.settings.columns_mobile.options__2.label" + } + ] + }, { "type": "checkbox", "id": "full_width", @@ -333,6 +357,12 @@ "label": "t:sections.featured-collection.settings.enable_desktop_slider.label", "default": false }, + { + "type": "checkbox", + "id": "swipe_on_mobile", + "default": false, + "label": "t:sections.featured-collection.settings.swipe_on_mobile.label" + }, { "type": "color_scheme", "id": "color_scheme", @@ -443,32 +473,6 @@ } ] }, - { - "type": "header", - "content": "t:sections.featured-collection.settings.header_mobile.content" - }, - { - "type": "select", - "id": "columns_mobile", - "default": "2", - "label": "t:sections.featured-collection.settings.columns_mobile.label", - "options": [ - { - "value": "1", - "label": "t:sections.featured-collection.settings.columns_mobile.options__1.label" - }, - { - "value": "2", - "label": "t:sections.featured-collection.settings.columns_mobile.options__2.label" - } - ] - }, - { - "type": "checkbox", - "id": "swipe_on_mobile", - "default": false, - "label": "t:sections.featured-collection.settings.swipe_on_mobile.label" - }, { "type": "header", "content": "t:sections.all.padding.section_padding_heading"