Hi All,
This afternoon I noticed that most of the user created pages on the demo site were unclickable. It turned out to be a bug, the checkbox for the new "Is Clickable" setting was defaulting to unchecked or false so new pages were being created as unclickable by default unless the user noticed the setting. Even worse, if using a skin that does not support the Is Clickable then it would still create new pages with it set to false but there was no visible option for the user to make the page clickable. The links would then be clickable in skins that don't use this property but if you changed to a skin that supports unclickable then they would all be unclickable because of this bad default value.
Fortunately it is a very easy thing to fix, you can fix it immediately by editing the Admin/PageSettings.aspx page with a text editor, look for this:
<asp:CheckBox ID="chkIsClickable" runat="server" CssClass="forminput" Checked="false"></asp:CheckBox>
and change the Checked property to true like this:
<asp:CheckBox ID="chkIsClickable" runat="server" CssClass="forminput" Checked="true"></asp:CheckBox>
I have corrected this and updated the 2.3.5.1 download packages so it is fixed for people who download it going forward, but if you are an early adopter and already upgraded or installed versions 2.3.5.1 you should make this change yourself.
Best,
Joe