Hello,
How can we change the check box in the order history and notes section of the orders screen within the admin to default to unchecked. As of now it is automatically checked making the comments private unless the box is unchecked. We will have little to no use for private comments and would benefit greatly from having this box unchecked by default.
Thanks in advance for your help!
Admin Order Comments - change check box default to unchecked
-
- Lieutenant Commander (LCDR)
- Posts: 91
- Joined: Mon Sep 22, 2008 8:37 pm
- Location: Northeast Ohio
- Contact:
Re: Admin Order Comments - change check box default to unchecked
Edit your Website/Admin/OrderHistory.aspx page and locate following code block
and then modify it as below
Code: Select all
if (!Page.IsPostBack)
{
BindOrderNotes();
AddIsPrivate.Checked = true;
}
Code: Select all
if (!Page.IsPostBack)
{
BindOrderNotes();
AddIsPrivate.Checked = false;
}