paulormf Posted September 23, 2013 Share Posted September 23, 2013 (edited) good night to all! how to create a direct link in header to the customer registration page, skipping the part where you put the email? is possible? thanks!! Edited September 25, 2013 by paulormf (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted September 23, 2013 Share Posted September 23, 2013 it isn't possible, because first step of registration form is a "email validation". Note that on next page is no field to insert email address. first step is necessary in this case. Link to comment Share on other sites More sharing options...
paulormf Posted September 23, 2013 Author Share Posted September 23, 2013 it isn't possible, because first step of registration form is a "email validation". Note that on next page is no field to insert email address. first step is necessary in this case. --- Ok vekia.. could see what was done on this page? www.extasetotal.com.br he created a direct link to the registration page. http://extasetotal.com.br/index.php?route=account/register thanks again! Link to comment Share on other sites More sharing options...
vekia Posted September 23, 2013 Share Posted September 23, 2013 are you sure that this is prestashop engine? Link to comment Share on other sites More sharing options...
paulormf Posted September 25, 2013 Author Share Posted September 25, 2013 are you sure that this is prestashop engine? --- I cheated with the structure quite similar, sorry!! Link to comment Share on other sites More sharing options...
DannetStudio Posted July 29, 2014 Share Posted July 29, 2014 You can get the direct link to the Create Account form adding the parameter create_account=1, this will skip the email verification and go directly to the form. For example: {$link->getPageLink('authentication', true)|escape:'html':'UTF-8'}?create_account=1 I've tested it on PS 1.6.0.8 and is working. 1 Link to comment Share on other sites More sharing options...
vekia Posted July 30, 2014 Share Posted July 30, 2014 nice catch, it works the same as a standard register from? Link to comment Share on other sites More sharing options...
DannetStudio Posted July 30, 2014 Share Posted July 30, 2014 Yes, it works as the standard register form. I found this method trying to send a direct link to the registration form, from the referralprogram email invitation (Which apparently has many flaws and missing details).You can also add other parameters, in my case for example I've added the sponsored name, lastname, email and sponsor email, so the registration form is auto filled with that information when the invited person enter it.You can get the url $_GET parameters from smarty with the smarty get parameter, for example {$smarty.get.sponsored_name} and place the variable directly on the form value. Link to comment Share on other sites More sharing options...
Palido Posted September 25, 2014 Share Posted September 25, 2014 Where do I have to add this line? {$link->getPageLink('authentication', true)|escape:'html':'UTF-8'}?create_account=1 Link to comment Share on other sites More sharing options...
vekia Posted September 25, 2014 Share Posted September 25, 2014 Where do I have to add this line? {$link->getPageLink('authentication', true)|escape:'html':'UTF-8'}?create_account=1 there where you want to add button with link to register page. the question is: where you want to add this link? everything depends on it! Link to comment Share on other sites More sharing options...
Palido Posted September 25, 2014 Share Posted September 25, 2014 I want a direct link from another external site to the registration form? Link to comment Share on other sites More sharing options...
vekia Posted September 25, 2014 Share Posted September 25, 2014 if you want to create link on external site (not prestashop) you have to use html not smarty code. <a href="http://yourwebsite.com/link-to-authenticate?create_account=1'>http://yourwebsite.com/link-to-authenticate?create_account=1">This is link</a> of course replace: http://yourwebsite.com/link-to-authenticate with link to your authenticate page Link to comment Share on other sites More sharing options...
Palido Posted September 25, 2014 Share Posted September 25, 2014 This is the link I get, when I am on the accoun-creation form: http://www.palido.com/shop/index.php?controller=authentication&back=my-account#account-creation How do I have to change the link that I get there directly? Link to comment Share on other sites More sharing options...
espacious Posted April 23, 2018 Share Posted April 23, 2018 Heh works for Prestashop 1.7.3.1 too! Link to comment Share on other sites More sharing options...
renier8 Posted August 9, 2021 Share Posted August 9, 2021 (edited) . Edited August 9, 2021 by renier8 (see edit history) 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