opencart - How to add one more action to the open cart registration page? -


let's have following simple form:

<html>     <form action="register_bg.php" method="get">         <input type="hidden" name="owner_id" value = "395060601"/>         <input type="hidden" name="key_id" value = "3"/>         <input type="hidden" name="f" value = "1043"/>         <input type="hidden" name="optin" value = "y"/>         name: <input type="text" name="inp_1" />         lname: <input type="text" name="inp_2" />         email: <input type="email" name="inp_3" />         <input type="submit" value="register"/>     </form> </html> 

how can add form , it's action open cart registration page. i.e. process should follows:

in opencart --> go account --> register --> fill details --> click submit button.

so show can take fields values registration page , edit action file/class of open cart can post values database?

let me know if need more details.

thanks, laith

under sales menu, go customers -> custom fields. here can add custom fields registration selecting custom field location account


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -