Page 1 of 1

Admin Order Comments - change check box default to unchecked

Posted: Wed May 06, 2009 3:25 pm
by wave_werks
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!

Re: Admin Order Comments - change check box default to unchecked

Posted: Thu May 07, 2009 3:15 am
by mazhar
Edit your Website/Admin/OrderHistory.aspx page and locate following code block

Code: Select all

if (!Page.IsPostBack)
        {
            BindOrderNotes();
            AddIsPrivate.Checked = true;
        }
and then modify it as below

Code: Select all

if (!Page.IsPostBack)
        {
            BindOrderNotes();
            AddIsPrivate.Checked = false;
        }