Product weights not showing on Dawn Theme

Hi @kirkcanada ,

The code goes to main-product.liquid. Please follow the instructions below.

  1. From your Admin Page, click Online Store > Themes >Actions > Edit code
  2. In the Section folder, open the main-product.liquid
  3. Find the code {%- when ‘title’ -%}, before the last , add the code below.

NOTE: Refer to image for placement

{% assign current_variant = product.selected_or_first_available_variant %}
            {% if product.selected_or_first_available_variant.weight != 0 %}
             **Weight:**  {{ product.selected_or_first_available_variant.weight | weight_with_unit }}
              {% endif %}