How to add vendor name to order summary notifications?

Hello,

How can I include the Vendor’s name to the order notification I receive on Shopify?

As we’re having several products from several vendors it will be easier to have it included on the order summary.

Thanks,

Hi @itsSelman !

Go to Settings, Notifications, scroll all the way down to “New Order” & replace the code with the following (assuming you didn’t do any previous changes). It’s just a matter of adding {{line.vendor}} to where you want it to show.


Hello {{ shop_name }},

{% assign current_datetime = date | date: "%b %d %I:%M%p" %}
  {% if customer.name %}
    {{ customer.name }} placed a new order with your store, {{ current_datetime }}:
  {% else %}
    Someone placed a new order with your store, {{ current_datetime }}:
  {% endif %}

  {% for line in subtotal_line_items %}
    - {% if line.sku != blank %}
          {{ line.quantity }} x {{line,vendor}} - (SKU: {{ line.sku }}) for {{ line.price | money }} each
        {% else %}
          {{ line.quantity }} x {{line,vendor}} - {{ line.title }} for {{ line.price | money }} each
        {% endif %}
    
  {% endfor %}

[View order {{ order_name }}](https://{{ shop.permanent_domain }}/admin/orders/{{ id }})
{% if fulfillment_aborted %}
  

The above order was not automatically fulfilled because it was flagged as suspicious.

{% endif %}

{% if has_high_risks? %}
  

**Security check:**

  

This order has a risk of being fraudulent. Review the order in your store's admin and contact the customer to verify their information.

  

{% endif %}
{% if gateway %}
  

**Payment processing method:**

  

{{ gateway }}

  

{% endif %}
{% if requires_shipping and shipping_address %}
  

**Delivery method:**

{% for shipping_method in shipping_methods %}
  

{{ shipping_method.title }}

{% endfor %}

**Shipping address:**

{{ shipping_address.name }}

{{ shipping_address.street }}

{{ shipping_address.city }}, {{ shipping_address.province }}  {{ shipping_address.zip }}

{{ shipping_address.country }}

{{ shipping_address.phone }}{% endif %}

{% if shopify_shipping_enabled %}
  

Save time and money by fulfilling with Shopify Shipping

  

{% endif %}

Let Me Know!

Thank you very much for this,

Before I try it, If I do it, will this automatically be included on the Order summary on my admin panel? that’s where I want it to be reflected.

Thanks,

No, this is just for the email side of things that you receive.

Oh, Thanks!

Any idea how can I have the vendor name on my order notification from the admin panel?

Did you ever find a fix for this? Having the same issue :(.

Yes there is a way to add the vendor’s name to the order summary, I will help you with it

Amazing - on the admin screen? Or just as a notification…

As a notification or on the admin screen if you want it that way

As a notification

But also on the admin screen if you want it that way

I’d like it on the admin screen. I found a guide on here that showed you how but I don’t have a product template like they suggested I added it to…

Hi Did you find the solution for this? coz even i want to show vendors name in order summery page. (i mean in every order we can see product details with their vendors name)