I have an extension in use in my Magento store to display various delivery methods during the checkout.
In my email confirmation template is this piece of code:
<td class="method-info">
<h6>Your delivery method:</h6>
<p class="delivery-method-text">
{{layout handle="deliverydate_email_information" order=$order}}
</p>
</td>
The customer can also choose "pick up" to get his goods directly from the store. How can I modify the email template so that the delivery method is only shown if the customer has not selected pick up?
Any hints how I can achieve this?
Thanks!