From 7a192c0402a7e605f7f9e2b1a1d1ba52acf48442 Mon Sep 17 00:00:00 2001 From: Max Stoiber Date: Tue, 17 Dec 2024 08:36:23 -0800 Subject: [PATCH] Update the Text block in the Featured Product section to allow richtext instead of just inline_richtext MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Because the Text block is `inline_richtext`, there is no way to render the product _description_ in a featured product section! 🤯 By simply changing the block type to `richtext` we enable this. --- sections/featured-product.liquid | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sections/featured-product.liquid b/sections/featured-product.liquid index 8eb489d6c3b..f2647b59161 100644 --- a/sections/featured-product.liquid +++ b/sections/featured-product.liquid @@ -504,7 +504,7 @@ "name": "t:sections.featured-product.blocks.text.name", "settings": [ { - "type": "inline_richtext", + "type": "richtext", "id": "text", "default": "t:sections.featured-product.blocks.text.settings.text.default", "label": "t:sections.featured-product.blocks.text.settings.text.label" @@ -1476,7 +1476,7 @@ { "type": "text", "settings": { - "text": "{{ section.settings.product.vendor }}", + "text": "

{{ section.settings.product.vendor }}

", "text_style": "uppercase" } },