Hello, is there an easy way to make a "quick add to basket" function where the customer writes the ProductNumber and push the "Add to basket"?
Yes
Make a form like this:
<form method="get"> ProductNumber: <input type="text" name="ProductNumber"> Quantity: <input type="text" name="Quantity"> <input type="submit" value="Add to basket"> </form>
You must be logged in to post in the forum