| View previous topic :: View next topic |
| Author |
Message |
dave9455
Joined: 07 Nov 2005 Posts: 18
|
Posted: Mon Nov 07, 2005 1:20 pm Post subject: Adding Information to Invoices |
|
|
| I want to customize my invoices and packing slips by adding store and return policies to the bottom of the invoice/packing slip. I am not familiar with XML, how can I add information below the invoice/ packing slip. Thanks |
|
| Back to top |
|
Brian ShipWorks Staff
Joined: 30 Jul 2004 Posts: 3608
|
Posted: Mon Nov 07, 2005 8:51 pm Post subject: |
|
|
We have an override setup just for this situation. You can override the "outputPageFooter" xsl:template to output content at the bottom of every invoice and packing slip.
To do this, insert the following content above the </xsl:stylesheet> line of the desired templates.
| Code: |
<xsl:template name="outputPageFooter" >
(Any HTML content here)
</xsl:template> |
Thanks,
Brian |
|
| Back to top |
|
dave9455
Joined: 07 Nov 2005 Posts: 18
|
Posted: Wed Nov 23, 2005 4:31 pm Post subject: Bold text options |
|
|
| What is the XML text coding for making items bold or a different font for the invoice footer. Thanks |
|
| Back to top |
|
Brian ShipWorks Staff
Joined: 30 Jul 2004 Posts: 3608
|
Posted: Thu Nov 24, 2005 6:06 pm Post subject: |
|
|
That would just be regular html.
Like,
<b>This would be bold</b>
Or,
<span style="color: red;" >This would be red.</span>
Thanks,
Brian |
|
| Back to top |
|
|