HomeHome Product Discus... Product Discus...SmithCartSmithCartRequire "Show Textbox #1" and show on confirmationRequire "Show Textbox #1" and show on confirmation
Previous
 
Next
New Post
1/4/2011 8:36 PM
 

How would I require "Show Textbox #1" in the cart module settings under Checkout Step 1 Setup, and also show on the confirmation screen as well as emails?

 
New Post
1/4/2011 10:54 PM
 

There isnt a checkbox in the buynow settings to make those fields required. If you want to make them required you can open up the page (step1.ascx and confirm.ascx) and add a required field validator control like this:

<asp:RequiredFieldValidator ID="rfvtxtUDTB1" runat="server" ControlToValidate="txtUDTB1" Display="Dynamic"
ErrorMessage="*Required" CssClass="SmithProdText"/>


At your service,
Dave Smith
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
New Post
1/5/2011 7:26 PM
 

Thanks for the quick response. Will this also add it to the confirmation page and confirmation emails? Currently (before your suggested mod) the information is not displaying on the confirmation page or emails.

 
New Post
1/6/2011 11:20 AM
 

The custom textbox on the step 1 page does not get displayed on the confirmation page. However, you can include it in the confirmation email. The following tokens can be entered in the User Email Confirmation Header and Admin Email Confirmation Header in the buynow settings to customize the email message.

[FIRSTNAME]
[LASTNAME]
[USERNAME] - Customer’s DNN User ID
[EMAIL] – Customer’s email address
[ORDERID]
[ORDERTOTAL] – Total order amount
[CUSTOMDATE] – Custom date field from Step 1 of the checkout.
[CUSTOMDROPDOWN] - Custom dropdown field from Step 1 of the checkout.
[CUSTOMTEXTBOX1] - Custom textbox 1 field from Step 1 of the checkout.
[CUSTOMTEXTBOX2] - Custom textbox 2 field from Step 1 of the checkout.
[ACCOUNTNUMBER] – The credit card number or eCheck number from the step 2 checkout page.
[ROUTINGNUMBER] – Applies to eCheck, Check and Internet Banking payment methods only. Collected on the step 2 checkout page.


Scott Kelly
Project Manager
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
New Post
1/6/2011 8:19 PM
 

Thanks. I think we can get close to the solution we really wanted by at least adding the textbox 1 token to the confirmation emails.

 
Previous
 
Next
HomeHome Product Discus... Product Discus...SmithCartSmithCartRequire "Show Textbox #1" and show on confirmationRequire "Show Textbox #1" and show on confirmation