vinothkumar Posted December 31, 2022 Posted December 31, 2022 hi, how to add extra input field contact us page in oscommer 4.8 version Quote
osCommerce-Official Posted December 31, 2022 Posted December 31, 2022 @Ivan Holbicould you please advise? Quote
Ivan Holbi Posted January 4, 2023 Posted January 4, 2023 Hi, It is not possible to add an extra input field to the contact us page in osCommerce 4.8 version but you can create your own Contact Us page by adding the widget Send Form instead of Contact Form. Please see the screenshot below. And there it will be necessary to add the form code in HTML. Please see the sample of this code below. <form> <div> <span>Name:<span class="required">*</span></span> <input type="text" name="name" required> </div> <div> <span>Email:<span class="required">*</span></span> <input type="email" name="email" required> </div> <div> <span>Enquiry:<span class="required">*</span></span> <textarea name="content" rows="10" cols="30" required></textarea> </div> <captcha></captcha> <button type="submit" class="btn">Continue</button> </form> And it will be also necessary to set up the required email template for this form. Best regards, Ivan Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.