How do i remove tracking number at the order status page

How do i remove tracking number at the order status page

ComnoxCompany
New Member
5 0 0

problem with track and trace pic.jpg

how do i remove the shipping company and track and trace on the order status page, it seems to be encoded in shopify itself. 

Could i also refer this to an app like parcel panel?

Replies 8 (8)

DaisyVo
Shopify Partner
4469 501 598

Hi @ComnoxCompany ,

Can you share your store URL and an account (with password) so that we can log in to check?

 

Thank you!

Daisy

Please let us know if our reply is helpful by giving it a Like or marking it as a Solution!

Avada SEO & Image Optimizer - The #1 SEO solution
ComnoxCompany
New Member
5 0 0

comnoxcompany.nl

Password is Wachtwoord,
u can make an acc w email, perhaps i can add an order and add tracking so u can see

Venyos0512
Visitor
2 0 0

You have a solutions for this? Also to delete this in the e-mail? 

topnewyork
Astronaut
1539 189 250

Hello, @ComnoxCompany 
Please share "Store URL"
Thanks!

Need a Shopify developer? Hire us at Top New York Web Design
Boost Your Store Sales with Volume/Tier Discount Try Big Bulk Discount
Create New Shopify Store For Just 1$/Month
ComnoxCompany
New Member
5 0 0

comnoxcompany.nl

Password is Wachtwoord,
u can make an acc w email, perhaps i can add an order and add tracking so u can see

ComnoxCompany
New Member
5 0 0

store url comnoxcompany.nl 
password = Wachtwoord

this my main-order.liquid

 

my acc works with email

{{ 'customer.css' | asset_url | stylesheet_tag }}

{%- style -%}
.section-{{ section.id }}-padding {
padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}

@media screen and (min-width: 750px) {
.section-{{ section.id }}-padding {
padding-top: {{ section.settings.padding_top }}px;
padding-bottom: {{ section.settings.padding_bottom }}px;
}
}
{%- endstyle -%}

<div class="customer order section-{{ section.id }}-padding">
<div>
<h1 class="customer__title">{{ 'customer.account.title' | t }}</h1>
<a href="{{ routes.account_url }}">{{ 'customer.account.return' | t }}</a>
</div>

<div>
<div>
<h2>{{ 'customer.order.title' | t: name: order.name }}</h2>
{%- assign order_date = order.created_at | time_tag: format: 'date_at_time' -%}
<p>{{ 'customer.order.date_html' | t: date: order_date }}</p>
{%- if order.cancelled -%}
{%- assign cancelled_at = order.cancelled_at | time_tag: format: 'date_at_time' -%}
<p>{{ 'customer.order.cancelled_html' | t: date: cancelled_at }}</p>
<p>{{ 'customer.order.cancelled_reason' | t: reason: order.cancel_reason_label }}</p>
{%- endif -%}

<table role="table" class="order-details">
<caption class="visually-hidden">
{{ 'customer.order.title' | t: name: order.name }}
</caption>
<thead role="rowgroup">
<tr role="row">
<th id="ColumnProduct" scope="col" role="columnheader">{{ 'customer.order.product' | t }}</th>
<th id="ColumnSku" scope="col" role="columnheader">{{ 'customer.order.sku' | t }}</th>
<th id="ColumnPrice" scope="col" role="columnheader">{{ 'customer.order.price' | t }}</th>
<th id="ColumnQuantity" scope="col" role="columnheader">{{ 'customer.order.quantity' | t }}</th>
<th id="ColumnTotal" scope="col" role="columnheader">{{ 'customer.order.total' | t }}</th>
</tr>
</thead>
<tbody role="rowgroup">
{%- for line_item in order.line_items -%}
<tr role="row">
<td
id="Row{{ line_item.key }}"
headers="ColumnProduct"
role="rowheader"
scope="row"
data-label="{{ 'customer.order.product' | t }}"
>
<div>
{%- if line_item.url != blank -%}
<a href="{{ line_item.url }}">{{ line_item.title | escape }}</a>
{%- else -%}
<p>{{ line_item.title | escape }}</p>
{%- endif -%}
{%- assign property_size = line_item.properties | size -%}
{%- unless line_item.selling_plan_allocation == null and property_size == 0 -%}
<div class="properties">
{%- unless line_item.product.has_only_default_variant -%}
<span>
{{ line_item.variant.title | escape }}
</span>
{%- endunless -%}
{%- unless line_item.selling_plan_allocation == null -%}
<span>
{{ line_item.selling_plan_allocation.selling_plan.name }}
</span>
{%- endunless -%}
{%- if property_size != 0 -%}
{%- for property in line_item.properties -%}
{% assign property_first_char = property.first | slice: 0 %}
{%- if property.last != blank and property_first_char != '_' -%}
<span>{{ property.first }}:</span>
<span>
{%- if property.last contains '/uploads/' -%}
<a href="{{ property.last }}">{{ property.last | split: '/' | last }}</a>
{%- else -%}
{{ property.last }}
{%- endif -%}
</span>
{%- endif -%}
{%- endfor -%}
{%- endif -%}
</div>
{%- endunless -%}

{%- if line_item.line_level_discount_allocations != blank -%}
<ul role="list" aria-label="{{ 'customer.order.discount' | t }}">
{%- for discount_allocation in line_item.line_level_discount_allocations -%}
<li>
<span class="svg-wrapper">
{{- 'icon-discount.svg' | inline_asset_content -}}
</span>
{{- discount_allocation.discount_application.title | escape }} (-
{{- discount_allocation.amount | money -}}
)
</li>
{%- endfor -%}
</ul>
{%- endif -%}

{%- if line_item.fulfillment -%}
<div class="fulfillment">
{%- assign created_at = line_item.fulfillment.created_at | time_tag: format: 'date' -%}
<span>{{ 'customer.order.fulfilled_at_html' | t: date: created_at }}</span>

{%- if line_item.fulfillment.tracking_url -%}
<a href="{{ line_item.fulfillment.tracking_url }}">
{{ 'customer.order.track_shipment' | t }}
</a>
{%- endif -%}
<span>
{{ line_item.fulfillment.tracking_company }}
{%- if line_item.fulfillment.tracking_number -%}
#{{ line_item.fulfillment.tracking_number }}
{%- endif -%}
</span>
</div>
{%- endif -%}
</div>
</td>
<td
headers="Row{{ line_item.key }} ColumnSku"
role="cell"
data-label="{{ 'customer.order.sku' | t }}"
>
{{ line_item.sku }}
</td>
<td
headers="Row{{ line_item.key }} ColumnPrice"
role="cell"
data-label="{{ 'customer.order.price' | t }}"
>
{%- if line_item.original_price != line_item.final_price or line_item.unit_price_measurement -%}
<dl>
{%- if line_item.original_price != line_item.final_price -%}
<dt>
<span class="visually-hidden">{{ 'products.product.price.regular_price' | t }}</span>
</dt>
<dd class="regular-price">
<s>{{ line_item.original_price | money }}</s>
</dd>
<dt>
<span class="visually-hidden">{{ 'products.product.price.sale_price' | t }}</span>
</dt>
<dd>
<span>{{ line_item.final_price | money }}</span>
</dd>
{%- else -%}
<dt>
<span class="visually-hidden">{{ 'products.product.price.regular_price' | t }}</span>
</dt>
<dd>
{{ line_item.original_price | money }}
</dd>
{%- endif -%}
{%- if line_item.unit_price_measurement -%}
<dt>
<span class="visually-hidden">{{ 'products.product.price.unit_price' | t }}</span>
</dt>
<dd class="unit-price">
<span>
{%- capture unit_price_separator -%}
<span aria-hidden="true">/</span
><span class="visually-hidden">{{ 'accessibility.unit_price_separator' | t }}&nbsp;</span>
{%- endcapture -%}
{%- capture unit_price_base_unit -%}
{%- if line_item.unit_price_measurement.reference_value != 1 -%}
{{- line_item.unit_price_measurement.reference_value -}}
{%- endif -%}
{{ line_item.unit_price_measurement.reference_unit }}
{%- endcapture -%}
<span data-unit-price>{{ line_item.unit_price | money }}</span>
{{- unit_price_separator -}}
{{- unit_price_base_unit -}}
</span>
</dd>
{%- endif -%}
</dl>
{%- else -%}
<span>{{ line_item.final_price | money }}</span>
{%- endif -%}
</td>
<td
headers="Row{{ line_item.key }} ColumnQuantity"
role="cell"
data-label="{{ 'customer.order.quantity' | t }}"
>
{{ line_item.quantity }}
</td>
<td
headers="Row{{ line_item.key }} ColumnTotal"
role="cell"
data-label="{{ 'customer.order.total' | t }}"
>
{%- if line_item.original_line_price != line_item.final_line_price -%}
<dl>
<dt>
<span class="visually-hidden">{{ 'products.product.price.regular_price' | t }}</span>
</dt>
<dd class="regular-price">
<s>{{ line_item.original_line_price | money }}</s>
</dd>
<dt>
<span class="visually-hidden">{{ 'products.product.price.sale_price' | t }}</span>
</dt>
<dd>
<span>{{ line_item.final_line_price | money }}</span>
</dd>
</dl>
{%- else -%}
{{ line_item.original_line_price | money }}
{%- endif -%}
</td>
</tr>
{%- endfor -%}
</tbody>
<tfoot role="rowgroup">
<tr role="row">
<td id="RowSubtotal" role="rowheader" scope="row" colspan="4">
{{ 'customer.order.subtotal' | t }}
</td>
<td headers="RowSubtotal" role="cell" data-label="{{ 'customer.order.subtotal' | t }}">
{{ order.line_items_subtotal_price | money }}
</td>
</tr>
{%- if order.cart_level_discount_applications != blank -%}
<tr role="row">
{%- for discount_application in order.cart_level_discount_applications -%}
<td id="RowDiscount" role="rowheader" scope="row" colspan="4">
{{ 'customer.order.discount' | t }}
<span class="cart-discount">
<span class="svg-wrapper">
{{- 'icon-discount.svg' | inline_asset_content -}}
</span>
{{- discount_application.title | escape -}}
</span>
</td>
<td headers="RowDiscount" role="cell" data-label="{{ 'customer.order.discount' | t }}">
<div>
<span>-{{ discount_application.total_allocated_amount | money }}</span>
<span class="cart-discount">
<span class="svg-wrapper">
{{- 'icon-discount.svg' | inline_asset_content -}}
</span>
{{- discount_application.title | escape -}}
</span>
</div>
</td>
{%- endfor -%}
</tr>
{%- endif -%}
{%- for shipping_method in order.shipping_methods -%}
<tr role="row">
<td id="RowShipping" role="rowheader" scope="row" colspan="4">
{{ 'customer.order.shipping' | t }} ({{ shipping_method.title | escape }})
</td>
<td
headers="RowShipping"
role="cell"
data-label="{{ 'customer.order.shipping' | t }} ({{ shipping_method.title | escape }})"
>
{{ shipping_method.price | money }}
</td>
</tr>
{%- endfor -%}
{%- for tax_line in order.tax_lines -%}
<tr role="row">
<td id="RowTax" role="rowheader" scope="row" colspan="4">
{{ 'customer.order.tax' | t }} ({{ tax_line.title | escape }}
{{ tax_line.rate | times: 100 }}%)
</td>
<td
headers="RowTax"
role="cell"
data-label="{{ 'customer.order.tax' | t }} ({{ tax_line.title | escape }} {{ tax_line.rate | times: 100 }}%)"
>
{{ tax_line.price | money }}
</td>
</tr>
{%- endfor -%}
{%- if order.total_duties -%}
<tr role="row">
<td id="RowDuties" role="rowheader" scope="row" colspan="4">{{ 'customer.order.total_duties' | t }}</td>
<td headers="RowDuties" role="cell" data-label="{{ 'customer.order.total_duties' | t }}">
{{ order.total_duties | money }}
</td>
</tr>
{%- endif -%}
{%- if order.total_refunded_amount > 0 -%}
<tr role="row">
<td id="RowTotalRefund" role="rowheader" scope="row" colspan="3">
{{ 'customer.order.total_refunded' | t }}
</td>
<td
headers="RowTotalRefund"
role="cell"
colspan="2"
data-label="{{ 'customer.order.total_refunded' | t }}"
>
-{{ order.total_refunded_amount | money_with_currency }}
</td>
</tr>
{%- endif -%}
<tr role="row">
<td id="RowTotal" role="rowheader" scope="row" colspan="3">{{ 'customer.order.total' | t }}</td>
<td headers="RowTotal" role="cell" colspan="2" data-label="{{ 'customer.order.total' | t }}">
{{ order.total_net_amount | money_with_currency }}
</td>
</tr>
</tfoot>
</table>
</div>
<div>
<div>
<h2>{{ 'customer.order.billing_address' | t }}</h2>
<p>
<strong>{{ 'customer.order.payment_status' | t }}:</strong>
{{ order.financial_status_label }}
</p>
{{ order.billing_address | format_address }}
</div>
<div>
<h2>{{ 'customer.order.shipping_address' | t }}</h2>
<p>
<strong>{{ 'customer.order.fulfillment_status' | t }}:</strong>
{{ order.fulfillment_status_label }}
</p>
{{ order.shipping_address | format_address }}
</div>
</div>
</div>
</div>

{% schema %}
{
"name": "t:sections.main-order.name",
"settings": [
{
"type": "header",
"content": "t:sections.all.padding.section_padding_heading"
},
{
"type": "range",
"id": "padding_top",
"min": 0,
"max": 100,
"step": 4,
"unit": "px",
"label": "t:sections.all.padding.padding_top",
"default": 36
},
{
"type": "range",
"id": "padding_bottom",
"min": 0,
"max": 100,
"step": 4,
"unit": "px",
"label": "t:sections.all.padding.padding_bottom",
"default": 36
}
]
}
{% endschema %}

ComnoxCompany
New Member
5 0 0

anyone figured anything out, i think i need to remove something in this code, do i nee shopify plus to do this?

Venyos0512
Visitor
2 0 0

Did you figured this out? We also have the same problem. We use Parcel Panel, but the Track and Trace will show on the e-mail and orderpage in the account settings?