benjjj6 Posted July 18, 2008 Share Posted July 18, 2008 HiI would like to know how to:Completely remove the Mr/Mrs. option from the account registration page. I dont need to know this and it is just another piece of information I'm asking customers to give that I don't need.How do I make the "Sign up for our newsletter" option be 'ticked' by default. I feel this will encourage more people to sign up for the newsletter.On the address page, currently Post Code is before City. As I am based in the UK I would like to change this to: City then Postcode then Country. Also, how do I make the default country United Kingdom in the dropdown list rather than France.Thanks! Link to comment Share on other sites More sharing options...
branok Posted July 22, 2009 Share Posted July 22, 2009 ...How do I make the "Sign up for our newsletter" option be 'ticked' by default. I feel this will encourage more people to sign up for the newsletter.... in file authentication.tpl (themes/prestashop) make this change: <input type="checkbox" name="newsletter" id="newsletter" value="1" {if isset($smarty.post.newsletter) AND $smarty.post.newsletter == 1} checked="checked"{/if} /> replace with <input id="newsletter" type="checkbox" checked="checked" value="1" name="newsletter" /> In this file (authentication.tpl) you can make also other changes in registration formular (your other questions).Brano Link to comment Share on other sites More sharing options...
Recommended Posts