Hi
In my parse file I want to display 2 seperate nested content area that are dependant on whether the user is logged in or not.
Heres the code I've added:
<MySource_AREA id_name="login_box" design_area="show_if">
<MySource_SET name="condition" value="logged_in" />
<MySource_THEN>
<MySource_AREA id_name="lhs_loggedin" design_area="nest_content" cache="1" />
</MySource_THEN>
<MySource_ELSE>
<MySource_AREA id_name="lhs_loggedout" design_area="nest_content" cache="1" />
</MySource_ELSE>
</MySource_AREA>
But when I select the details screen in each of the customisations only login_box appears and not lhs_loggedin or lhs_loggedout
Any ideas why?