Actually, I forgot to specify an important detail regarding my question. I dont Want/need to have the barcode image to display in the order page along with the SKUs but the barcode number.
Our agents know our products mostly by their Barcode numbers and not SKUs. When they manage/change/modify orders, it’s much simpler/faster for them if they can immediately identify the product with the barcode number, without having to translate the SKUs to find out the equivalent barcode number.
if there’s a 1to1 for a products and it’s variants to a barcode just use that to fill in a hidden line item property
{% for tag in product.tags %}
.....
....
...
.
<p class="line-item-property__field">
<label for="barcode_number">barcode_number</label>
<input id="barcode_number" type="hidden" name="properties[__barcode_number]" value="{{tag_barcode}}">
</p>
.....
If it’s many barcodes for each variant you’ll want to store the barcode(s) either in a metafield or a mapped list in the theme, or hide them in the product description.
If your not storing SKUS on the variant then use that same method for barcodes
I can implement both solutions contact me with details for pricing either by email in sig or PM on the forums.
I too am wanting to be able to see the barcode field on the orders screen on the admin side. Paul, would you be willing to reach out to me regarding your services in being able to make this happen?