Jump to content

Returns address need updated in in the invoice editor


British Parts

Recommended Posts

You will be looking for:

<div id="footer">
  <p>{$STORE.address}, {if !empty($STORE.county)}{$STORE.county}, {/if}{if !empty($STORE.postcode)}{$STORE.postcode} {/if}{if !empty($STORE.country)}{$STORE.country}{/if}</p>
</div>

You can change what is between the <p> and </p> tags.

You might also choose to add new information about where to send returns:

Find:

	  <div class="product">
		<span class="price">{$LANG.common.price}</span>
		<strong>{$LANG.common.product}</strong>
	  </div>

Change to:

	  <div class="product">
		<p>Please contact the store (see <strong>Contact Us</strong>) for Returns information.</p>
		<span class="price">{$LANG.common.price}</span>
		<strong>{$LANG.common.product}</strong>
	  </div>

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...