Edit File: test.tpl
<div id="elm_shipping_test"> {if $service} <table width="100%" class="table"> <thead> <tr> <th> </th> <th>{__("origination")} </th> <th> </th> <th>{__("destination")} </th> </tr> </thead> <tbody> <tr class="table-row"> <td><span>{__("address")}:</span> </td> <td>{$settings.Company.company_address} </td> <td> </td> <td>{$settings.General.default_address} </td> </tr> <tr> <td><span>{__("city")}:</span> </td> <td>{$settings.Company.company_city}</td> <td> </td> <td>{$settings.General.default_city} </td> </tr> <tr class="table-row"> <td><span>{__("country")}:</span> </td> <td>{$settings.Company.company_country}</td> <td> </td> <td>{$settings.General.default_country} </td> </tr> <tr> <td><span>{__("state")}:</span> </td> <td>{$settings.Company.company_state}</td> <td> </td> <td>{$settings.General.default_state} </td> </tr> <tr class="table-row"> <td><span>{__("zip_postal_code")}:</span> </td> <td>{$settings.Company.company_zipcode}</td> <td> </td> <td>{$settings.General.default_zipcode} </td> </tr> </tbody> </table> <table width="100%" class="table-middle"> <tbody> <tr> <td width="15%"><strong>{__("shipping_service")}:</strong></td> <td>{$service}</td> </tr> <tr> <td><strong>{__("weight")}:</strong></td> <td>{$weight} {$settings.General.weight_symbol}</td> </tr> {if $data.price} <tr> <td><strong>{__("cost")}:</strong></td> <td>{include file="common/price.tpl" value=$data.price}</td> </tr> {if $data.delivery_time|trim} <tr> <td><strong>{__("delivery_time")}:</strong></td> <td>{$data.delivery_time}</td> </tr> {/if} {else} <tr> <td width="150px"><strong>{__("error")}:</strong></td> <td width="300px"><span>{$data.error|default:"n/a"}</span></td> </tr> {/if} </tbody> </table> {/if} <!--elm_shipping_test--></div>
Back to File Manager