StoreHippo provides various invoice templates. You can choose from one of the available invoice templates or to design your custom invoice template. You can also edit the invoice templates. Some templates show the seller name and some show the store name. However, you can show the seller name in the template containing the store name and vice-versa.
To show the seller name in the invoice template containing the store name, follow the steps mentioned below:
<span><b>{{order.seller.title}}</b></span><br>
<span>{{#if order.seller.address}} {{order.seller.address}} {{/if}}</span><br>
<span>{{order.seller.city}} {{#if order.seller.zip_code}}- {{order.seller.zip_code}}{{/if}}</span><br>
<span>{{order.seller.state}} {{#if order.seller.country}}| {{order.seller.country}}{{/if}}</span>
{{#if order.seller.pan}}
<br><b>PAN: </b><span style="font-size: 14px">{{order.seller.pan}}</span>
{{/if}}
{{#if order.seller.gstin}}
<br><b>GSTIN: </b><span style="font-size: 14px">{{order.seller.gstin}}</span>
{{/if}}
Now, the seller name will be mentioned in the invoice template. In the same way, you can display the store details in the template in which the seller details are shown.