Remove the price from order confirmation notifications

Hi

I want to remove the price column from my order notificatoins because this website is for an ordering portal only for our customers. How do I remove the price, shipping, discount (any thing to do with $$) from my order notifications?

Thank you

Hi there,

Simply update the order confirmation notification, here’s a link (replace with your shop name)

https://shopname.myshopify.com/admin/email_templates/order_confirmation/edit

If you are still using a default template, copy/paste to a safe place and replace with below (It has the $ related items removed)

{% capture email_title %}Thank you for your purchase! {% endcapture %}
{% capture email_body %}
  {% if requires_shipping %}
  {% case delivery_method %}
      {% when 'pick-up' %}
        You’ll receive an email when your order is ready for pickup.
      {% when 'local' %}
        Hi {{ customer.first_name }}, we're getting your order ready for delivery.
      {% else %}
        Hi {{ customer.first_name }}, we're getting your order ready to be shipped. We will notify you when it has been sent.
    {% endcase %}
      {% if delivery_instructions != blank  %}
        

**Delivery information:** {{ delivery_instructions }}

      {% endif %}
  {% endif %}
{% endcapture %}

  
  
  
  
  
  

  
    <table>

      
        
          <table>

  
    
      

        <table>

          
            

              <table>

                <tr>

                  <td>

                    {%- if shop.email_logo_url %}
                      
                    {%- else %}
                      # 
                        {{ shop.name }}
                      
                    {%- endif %}
                  

</td>

                    <td>

                      
                        Order {{ order_name }}
                      
                    

</td>

                </tr>

              </table>

            
          
        </table>

      
    
  
</table>

          <table>

  
    
      
        <table>

          
            
              
            ## {{ email_title }}
            

{{ email_body }}

            {% if order_status_url %}
              <table>

  <tr>

    <td>

 

</td>

  </tr>

  
    
      <table>

        <tr>

          <td>

View your order

</td>

        </tr>

      </table>
      {% if shop.url %}
    <table>

      <tr>

        <td>

or Visit our store

</td>

      </tr>

    </table>
{% endif %}

    
  
</table>

            {% else %}
              {% if shop.url %}
    <table>

      
        
          <table>

            <tr>

              <td>

Visit our store

</td>

            </tr>

          </table>
        
      
    </table>
{% endif %}

            {% endif %}

            
          
        </table>
      
    
  
</table>

          {% assign gift_card_line_item = line_items | where: "gift_card" %}
          {% if gift_card_line_item.first %}
            <table>

  
    
      
        <table>

          <tr>

            <td>

              ### Gift card
            

</td>

          </tr>

        </table>
        <table>

          <tr>

            <td>

              
              

 You’ll receive separate emails for any gift cards.

            

</td>

          </tr>

        </table>
      
    
  
</table>
          {% endif %}

          <table>

  
    
      
        <table>

          <tr>

            <td>

              ### Order summary
            

</td>

          </tr>

        </table>
        <table>

          
            
              
            

  {% for line in subtotal_line_items %}
  {% endfor %}
<table>

    
      <table>

        <tr>
<td>

          {% if line.image %}
            
          {% endif %}
        

</td>

        <td>

          {% if line.product.title %}	
            {% assign line_title = line.product.title %}	
          {% else %}	
            {% assign line_title = line.title %}	
          {% endif %}

          {% if line.quantity < line.quantity %}
            {% capture line_display %} {{ line.quantity }} of {{ line.quantity }} {% endcapture %}
          {% else %}
            {% assign line_display = line.quantity  %}
          {% endif %}

          {{ line_title }} × {{ line_display }}

          {% if line.variant.title != 'Default Title' %}
            {{ line.variant.title }}

          {% endif %}

      

</td>
</tr>
</table>
    
  </table>

          <table>

  
    
      
        <table>

          <tr>

            <td>

              ### Customer information
            

</td>

          </tr>

        </table>
        <table>

          
            
              
            
                {% if requires_shipping and shipping_address %}
                
                {% endif %}
                {% if billing_address %}
                
                {% endif %}
              <table>

              <tr>
<td>

                  #### Shipping address
                  {{ shipping_address | format_address }}
                

</td>
<td>

                  #### Billing address
                  {{ billing_address | format_address }}
                

</td>
</tr>

            </table>
            
                {% if requires_shipping and shipping_address %}
                
                {% endif %}
              <table>

              <tr>
<td>

                  #### Shipping method
                  

{{ shipping_method.title }}

                

</td>
</tr>

            </table>

            
          
        </table>
      
    
  
</table>

          <table>

  
    
      
        <table>

          <tr>

            <td>

              
              

If you have any questions, reply to this email or contact us at [{{ shop.email }}](mailto:{{ shop.email }})

            

</td>

          </tr>

        </table>
      
    
  
</table>

        
      
    </table>
  

WOW! Thanking you a million times! It works! :slightly_smiling_face:

1 Like