moonmosaic Posted March 7, 2012 Share Posted March 7, 2012 Can someone please help me how to disable this? When customer logs in or registers and wants to add a new address - his/her name appears in the first name and last name boxes. Every single box should be empty so there is no confusion when adding a new address. Thanks! Link to comment Share on other sites More sharing options...
Mike Kranzler Posted March 7, 2012 Share Posted March 7, 2012 Hi moonmosaic, This is something handled by each user's individual browser settings, and not something you can regulate for your individual site. -Mike Link to comment Share on other sites More sharing options...
moonmosaic Posted March 7, 2012 Author Share Posted March 7, 2012 Hi moonmosaic, This is something handled by each user's individual browser settings, and not something you can regulate for your individual site. -Mike Thanks Mike, but still not sure why the entire name, first name and last name are there as soon as the "add new address" box opens up. I have not seen this with other companies. In most cases I need to scroll down to the box and start typing something for auto complete. Link to comment Share on other sites More sharing options...
Mike Kranzler Posted March 7, 2012 Share Posted March 7, 2012 Thanks Mike, but still not sure why the entire name, first name and last name are there as soon as the "add new address" box opens up. I have not seen this with other companies. In most cases I need to scroll down to the box and start typing something for auto complete. Please try clearing your browser's cookies and cache and then let me know if the issue persists. -Mike Link to comment Share on other sites More sharing options...
moonmosaic Posted March 7, 2012 Author Share Posted March 7, 2012 Please try clearing your browser's cookies and cache and then let me know if the issue persists. -Mike Yes, it still has first name and last name already input in those fields. It takes the data from personal info because I just registered as a fictional character first time ever so there is no history or a cache to pull from. Any suggestions? Do you not have this problem? I am using 1.4 but I have a 1.2 version and it does the same. Link to comment Share on other sites More sharing options...
Mike Kranzler Posted March 8, 2012 Share Posted March 8, 2012 Hi moonmosaic, As I mentioned earlier, this is not a setting anywhere within PrestaShop's software. This information is being populated by an autocomplete function within your browser. You can control this for yourself by disabling that feature, but your customers will need to make that decision for themselves. -Mike Link to comment Share on other sites More sharing options...
moonmosaic Posted March 9, 2012 Author Share Posted March 9, 2012 Hi moonmosaic, As I mentioned earlier, this is not a setting anywhere within PrestaShop's software. This information is being populated by an autocomplete function within your browser. You can control this for yourself by disabling that feature, but your customers will need to make that decision for themselves. -Mike Thanks Mike, Link to comment Share on other sites More sharing options...
Mike Kranzler Posted March 9, 2012 Share Posted March 9, 2012 I'm glad I could help clear this up! Happy Friday! -Mike Link to comment Share on other sites More sharing options...
GNDavid Posted September 13, 2016 Share Posted September 13, 2016 This information ( answers) are no correct. In the part of the code to display "first name" "and last name " for example if one page checkout in the file " order-opc-new-account.tpl " have to take out the code: onblur="$('#lastname').val($(this).val());" for example for firstname in: <div class="required form-group"> <label for="firstname">{l s='First name'} <sup>*</sup></label> <input type="text" class="text form-control validate" id="customer_firstname" name="customer_firstname" onblur="$('#firstname').val($(this).val());" data-validate="isName" value="{if isset($guestInformations) && isset($guestInformations.customer_firstname) && $guestInformations.customer_firstname}{$guestInformations.customer_firstname}{/if}" /> take out: onblur="$('#lastname').val($(this).val());" will be: <div class="required form-group"> <label for="firstname">{l s='First name'} <sup>*</sup></label> <input type="text" class="text form-control validate" id="customer_firstname" name="customer_firstname" data-validate="isName" value="{if isset($guestInformations) && isset($guestInformations.customer_firstname) && $guestInformations.customer_firstname}{$guestInformations.customer_firstname}{/if}" /> </div> next to this code you have the same code for lastname, do in there the same. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now