how to hide a collapsible row metafield when its blank

Instructions

  1. Go to ‘Online Store’ → Theme

  2. In your Active Theme click on the 3 dots (…) → Edit Code

  3. In the Sections folder locate the file ‘main-product.liquid’ or similar.

  4. Find {%- when ‘collapsible_tab’ -%}

  5. Below the {%- when ‘collapsible_tab’ -%} you will see something like this

{%- when 'collapsible_tab' -%}
  
    
  

  1. Surround everything in an if statement like this:
{%- when 'collapsible_tab' -%}
  {% if block.settings.content != blank or block.settings.page.content != blank %}
  
    
  

{% endif %}

This should work