Hi,
the app kaching bundles is showing misleading information in the order list
__kaching_bundles: {“deal”:“u1sI”,“main”:true}
how can i delete them?
Here is my liquid for packing slips, where do I have to make a change
{{ shop.name }}
Bestellung {{ order.name }}
{% if order.po_number != blank %}Bestellnummer {{ order.po_number }}
{% endif %}{{ order.created_at | date: format: "date" }}
{% if delivery_method.instructions != blank %} Zustellung an {% else %} Liefern an {% endif %}
{% if shipping_address != blank %}
{{ shipping_address.name }}
{% if shipping_address.company != blank %}
{{ shipping_address.company }}
{% endif %}
{{ shipping_address.address1 }}
{% if shipping_address.address2 != blank %}
{{ shipping_address.address2 }}
{% endif %}
{% if shipping_address.city_province_zip != blank %}
{{ shipping_address.city_province_zip }}
{% endif %}
{{ shipping_address.country }}
{% if shipping_address.phone != blank %}
{{ shipping_address.phone }}
{% endif %}
{% else %}
Keine Lieferadresse
{% endif %}
Rechnung an
{% if billing_address != blank %}
{{ billing_address.name }}
{% if billing_address.company != blank %}
{{ billing_address.company }}
{% endif %}
{{ billing_address.address1 }}
{% if billing_address.address2 != blank %}
{{ billing_address.address2 }}
{% endif %}
{% if billing_address.city_province_zip != blank %}
{{ billing_address.city_province_zip }}
{% endif %}
{{ billing_address.country }}
{% else %}
Keine Rechnungsadresse
{% endif %}
Artikel
Anzahl
{% comment %}
To adjust the size of line item images, change desired_image_size.
The other variables make sure your images print at high quality.
{% endcomment %}
{% assign desired_image_size = 58 %}
{% assign resolution_adjusted_size = desired_image_size | times: 300 | divided_by: 72 | ceil %}
{% capture effective_image_dimensions %}
{{ resolution_adjusted_size }}x{{ resolution_adjusted_size }}
{% endcapture %}
{% for line_item in line_items_in_shipment %}
{{ line_item.title }} {% if line_item.variant_title != blank %} {{ line_item.variant_title }} {% endif %} {% if line_item.sku != blank %} {{ line_item.sku }} {% endif %} {% for group in line_item.groups %} Teil von: {{ group.title }} {% endfor %}
{{ line_item.shipping_quantity }} of {{ line_item.quantity }}
Es gibt weitere Artikel aus deiner Bestellung, die nicht in dieser Lieferung enthalten sind.
{% endunless %}{% if order.note != blank %}
Anmerkungen
{{ order.note }}
Zustellungsanweisungen
{{ delivery_method.instructions }}
Danke, dass du bei uns eingekauft hast!
{{ shop.name }}
{{ shop_address.summary }}
{{ shop.email }}
{{ shop.domain }}
kr
Karsten

