如何在shopify中的订单中隐藏空白属性字段

发布于 2025-01-11 12:47:08 字数 1032 浏览 0 评论 0原文

我创建了一个礼品备注功能,用于存储备注,但问题是即使文本区域为空白,它也会在订单上显示标题,您可以帮助解决这个问题吗? 如果文本区域为空,订单页面仍显示“购物车备注:”

{% if line_item.properties != empty %}
        <ul class="CartItem__PropertyList">
          {% for property in line_item.properties %}
          {% assign first_character_in_key = property.first | truncate: 1, '' %}

          {% if property.last == blank or first_character_in_key == '_' %}
          {% continue %}
          {% endif %}

          <li class="CartItem__Property">{{ property.first }}: <p class="cart_note_txt">{{ property.last }}</p></li>
          {% endfor %}
        </ul>
        {% endif %}
  <textarea class="gift_note_pro" maxlength="300" name="properties[Cart Note]" style="display:none;" placeholder="Add a note">                    
                  </textarea>  

有人可以帮我解决这个问题吗?

I have created a gift note functionality which store notes but the problem is it is showing title on orders even though textarea is blank could you please help to get rid of this problem
if textarea is blank still order page is showing "cart note:"

{% if line_item.properties != empty %}
        <ul class="CartItem__PropertyList">
          {% for property in line_item.properties %}
          {% assign first_character_in_key = property.first | truncate: 1, '' %}

          {% if property.last == blank or first_character_in_key == '_' %}
          {% continue %}
          {% endif %}

          <li class="CartItem__Property">{{ property.first }}: <p class="cart_note_txt">{{ property.last }}</p></li>
          {% endfor %}
        </ul>
        {% endif %}
  <textarea class="gift_note_pro" maxlength="300" name="properties[Cart Note]" style="display:none;" placeholder="Add a note">                    
                  </textarea>  

Can someone help me to get rid of this problem ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文