Fatal error: Smarty error: [in shipments/shipment_products.tpl line 7] Smarty.class

when i create a new shipment and change the status to SHIPPED

and i checkmark “Send shipment notification to customer”



I get this error below:



Fatal error: Smarty error: [in shipments/shipment_products.tpl line 7]: syntax error: unrecognized tag: $ (Smarty_Compiler.class.php, line 445) in /home/username/public_html/lib/templater/Smarty.class.php on line 1095





If I don’t checkmark the “Send shipment notification to customer” I don’t get this error. But then I won’t get any notifications emails sent.



In my order status settings the “SHIPPED” status settings I already set notify customer and notify orders department boxes CHECKED.



Any ideas? Thanks.


{* $Id: shipment_products.tpl 8441 2009-12-22 13:12:13Z alexions $ *}<br />
<br />
{include file="letter_header.tpl"}<br />
<br />
{$lang.dear} {$order_info.firstname},<br /><br /><br />
<br />
{$lang.products_were_sent}<br /><br /><br />
<br />
<strong>{$lang.order_id}</strong>: #{$order_info.order_id}<br /><br />
<strong>{$lang.shipping_method}</strong>: {$shipment.shipping}<br /><br />
<strong>{$lang.shipment_date}</strong>: {$shipment.timestamp|date_format:"`$settings.Appearance.date_format`, `$settings.Appearance.time_format`"}<br /><br />
{if $shipment.carrier}<br />
	<strong>{$lang.carrier}</strong>: {$shipment.carrier}<br /><br />
{/if}<br />
{if $shipment.tracking_number}<br />
	<strong>{$lang.tracking_number}</strong>: {$shipment.tracking_number}<br /><br /><br />
{/if}<br />
<br />
<strong>{$lang.products}:</strong><br />
<p><br />
{foreach from=$shipment.items key="hash" item="amount"}<br />
	{if $amount > 0}<br />
		{$amount} x {$order_info.items.$hash.product}<br /><br />
		{if $order_info.items.$hash.product_options}<br />
			{include file="common_templates/options_info.tpl" product_options=$order_info.items.$hash.product_options}<br /><br />
		{/if}<br />
		<br /><br />
	{/if}<br />
{/foreach}<br />
</p><br />
<br />
{if $shipment.comments}<br />
<br /><br /><br />
<strong>{$lang.comments}</strong>:<br />
{$shipment.comments}<br />
{/if}<br />
<br />
{include file="letter_footer.tpl"}