We have Tax Number enabled in the User Profiles options section but would like it to only display on the invoice if a customer does indeed have a tax number. Is there a way to use an {if} statement to accomplish this?
Example for customer with a tax number,
First Name: John
Last Name: Doe
Company: Cakes Are Us
Tax Number: 1234567
Phone: 555 1212
E-Mail:
john@cakesrus.com
URL: cakesville.com
Example for customer without a tax number,
First Name: John
Last Name: Doe
Company: Cakes Are Us
Phone: 555 1212
E-Mail:
john@cakesrus.com
URL: cakesville.com
Below is the current {if} statement for that field.
Code:
{if $_userinfo.default_fields.tax_number}{$lng.lbl_tax_number|truncate:$max_truncate:"...":true|cat:":"|string_format:$max_space}{$order.tax_number}
{/if}
Thanks