tonybrooklyn Posted June 9, 2011 Share Posted June 9, 2011 Hello,I was wondering if there is a way to create individual sales page for specific clients? Example: I send an email to a potential customer which at the bottom of the email is a link that will take them directly to the designated sales page of the product I am trying to sell them.Is this an option with Prestashop, perhaps a module does this. I don't want to make my entire site private, I just want certain pages that I create with sales products to be for certain eyes only.Any direction would be greatly appreciated.Tony. Link to comment Share on other sites More sharing options...
shokinro Posted June 10, 2011 Share Posted June 10, 2011 here is just thought for you reference, not tested and verified yet.you can register a product to any category first.then remove the link between product category so that it will not be displayed publicly.send your customer a link with special token key to above page copy the product page and some code to check if user comes this page with a some kind of token key, if yes allow access, other redirect to home page. Link to comment Share on other sites More sharing options...
tonybrooklyn Posted June 10, 2011 Author Share Posted June 10, 2011 shokinro, Thank you very much for getting back to me on this question! I'm not sure I understand the below:1. you can register a product to any category first. (is this true for already registered product?)2. then remove the link between product category so that it will not be displayed publicly. (How does one do this?)3. send your customer a link with special token key to above page (where does one get a special token Key)4. copy the product page and some code to check if user comes this page with a some kind of token key, if yes allow access, other redirect to home page. (where does one find the "some code" to check to see if user came to the page?)Thanks again. Link to comment Share on other sites More sharing options...
shokinro Posted June 10, 2011 Share Posted June 10, 2011 if you don't know coding at all, then it might be difficult to do it by yourself. 1. you can register a product to any category first. (is this true for already registered product?) Yes it is true. 2. then remove the link between product category so that it will not be displayed publicly. (How does one do this?) You can use any database tool such as PhpMyAdmin. 3. send your customer a link with special token key to above page (where does one get a special token Key) You can use Base64 encoding of other encoding of your product name + some other key.(Base64 is reversible, but not very secure)4. copy the product page and some code to check if user comes this page with a some kind of token key, if yes allow access, other redirect to home page. (where does one find the “some code” to check to see if user came to the page?) You will need to fetch the encoded token from URL, and check if it matches your original key. Link to comment Share on other sites More sharing options...
Recommended Posts