I modified the shopcart/skin1/news.tpl to this version below:
Code:
<TABLE>
<FORM action="{$xcart_web_dir}/mail/subscribe.php" name="subscribeform">
<INPUT type="hidden" name="redirect" value="{$redirect}">
<TR>
{if $usertype eq "C"}
<TD class="VertMenuItems">To subscribe to the newsletter, enter your email address and click "Subscribe".
{$lng.lbl_your_email}
<FONT style="FONT-SIZE: 3px;">
</FONT><INPUT type="text" name="newsemail" size="16">
<FONT style="FONT-SIZE: 5px;">
</FONT>
<FONT class="FormButton">{$lng.lbl_subscribe}</FONT> <INPUT type="image" {include file="buttons/go_image.tpl" full_url='Y'}>
Subscribing to our newsletter is free and your data will not be shared or sold with any other companies. Please see our
privacy statement for details.
</TD>
{else}
<TD>
{$lng.lbl_your_email}
<INPUT type="text" name="newsemail" size="16">
{include file="buttons/subscribe_menu.tpl"}
</TD>
{/if}
</TD>
</TR>
</FORM>
<FORM action="{$xcart_web_dir}/mail/unsubscribe.php" name="unsubscribeform">
<INPUT type="hidden" name="redirect" value="{$redirect}">
<TR>
{if $usertype eq "C"}
<TD class="VertMenuItems">To be removed from our newsletter subscription, type in your email address and then click "Unsubscribe".
{$lng.lbl_your_email}
<FONT style="FONT-SIZE: 3px;">
</FONT><INPUT type="text" name="email" size="16">
<FONT style="FONT-SIZE: 5px;">
</FONT>
<FONT class="FormButton">{$lng.lbl_unsubscribe}</FONT> <A href="javascript:document.unsubscribeform.submit()" class="VertMenuItems">
<INPUT type="image" {include file="buttons/go_image.tpl" full_url='Y'}></A></TD>
{else}
<TD>
{$lng.lbl_your_email}
<INPUT type="text" name="newsemail" size="16">
{include file="buttons/unsubscribe_menu.tpl"}
</TD>
{/if}
</TD>
</TR>
</FORM>
</TABLE>