Jump to content

disabling bottom grey-band, new customer creation


Recommended Posts

2 questions:

 

1. On each page in te front-end store there is at the bottom a grey-band (free shipping, money returned, ...) above the black area of the sitemap (default theme)

How Can I deleted this grey-band ?

 

2. When a new customer is entering the store and fills in the required fields,  he can thick a box for receiving a newsletter and one for ads from partners.

These 2 thick-boxes shouldn't be displayed. Where to do this ?

 

Tx

Link to comment
Share on other sites

Good morning

 

Assuming you are using default theme

 

Go to:

 

public_html/Your shop/themes/default/authentication.tpl

 

And around line 442 Comment out   {* Comment out *}

 

{*  {if $newsletter}
<p class="checkbox" >
<input type="checkbox" name="newsletter" id="newsletter" value="1" {if isset($smarty.post.newsletter) AND $smarty.post.newsletter == 1} checked="checked"{/if} autocomplete="off"/>
<label for="newsletter">{l s='Sign up for our newsletter!'}</label>
</p>
<p class="checkbox" >
<input type="checkbox"name="optin" id="optin" value="1" {if isset($smarty.post.optin) AND $smarty.post.optin == 1} checked="checked"{/if} autocomplete="off"/>
<label for="optin">{l s='Receive special offers from our partners!'}</label>
</p>
{/if}  *}
 
Result
 
 
This will hide the text and check boxes you do not require but I am not sure if the information will be needed later
 
Hope this helps
 
Paul
Edited by Paulito (see edit history)
Link to comment
Share on other sites

Doesn't work Did I something wrong ?

here is the section I commented out 'file authencitation.tpl in HOME-DIR/themes/default (public_html does not exist)

 

<!--put newsletter and news from partner checkbox in comment -->
{*    {if isset($newsletter) && $newsletter}
    <p class="checkbox">
      <input type="checkbox" name="newsletter" id="newsletter" value="1" {if isset($smarty.post.newsletter) && $smarty.post.newsletter == '1'}checked="checked"{/if} autocomplete="off"/>
      <label for="newsletter">{l s='Sign up for our newsletter!'}</label>
     </p>
     <p class="checkbox">
      <input type="checkbox" name="optin" id="optin" value="1" {if isset($smarty.post.optin) && $smarty.post.optin == '1'}checked="checked"{/if} autocomplete="off"/>
      <label for="optin">{l s='Receive special offers from our partners!'}</label>
     </p>
    {/if} *}

 

and for completeness here is the url: http://test.italiaansewijnkopen.be/index.php

 

note the site is in Dutch but I think that's no problem.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...