簡體   English   中英

(Shopify) 錯誤:模板正文部分缺少 {{content_for_layout}}

[英](Shopify) Error: Missing {{content_for_layout}} in the body section of the template

我在theme.liquid中刪除了帶有“{{content_for_layout}}”“main”部分:

<main role="main">
  {{ content_for_layout }}
</main>

然后,我得到了這個錯誤,如下所示:

在此處輸入圖像描述

似乎無法刪除它,但我真的想刪除它。 有什么辦法可以去掉嗎? 而且去掉它也能得到同樣的效果。

您可以將其注釋掉,如下所示:

{% comment %}  
<main role="main">
  {{ content_for_layout }}
</main>
{% endcomment %}

此外,您可以在開始的主標簽中使用style="display: none"

<main role="main" style="display:none">
  {{ content_for_layout }}
</main>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM