How do I remove lable fx. "Customer Name" from Invoice

Hi there,
Can someone help. I’m new to ERPNext.

How do I remove lable fx. “Customer Name” and “Address” from Invoice and other prints.

Hi, you should create your own custom print formats.

Thanks, I did. first duplicating default, renaming. Still can’t see how to hide labels.

Do u mean in printing?

Regards
Bilal

Yes, So the customer name and address is all to the left.

I hate to resurrect old threads, but was there ever a solution for this?

I’d like to remove the label from what is printed so I have more room in the address window of envelopes.

Add a HTML Field and set its source as

<div>
<label>Date: </label>
</div>
<div>{{ doc.transaction_date }}
</div>

Or

<div>
<label>Date: </label>
</div>
<div>{{ doc.get_formatted('transaction_date') }}
</div>