Is it possible to print the design area called by MySource_print in situ rather than where the MySource_print is triggered from?
e.g. the below code prints the staff_nav within div.site-center, rather than div.nav where this design area is located.
(Matrix v4.16.1)
<div class="site-center">
<MySource_AREA id_name="staff_nest" design_area="body" print="no" />
<MySource_area id_name="customer_nest" design_area="nest_content" print="no">
<MySource_set name="type_codes" value="page" />
</MySource_area>
<MySource_AREA id_name="visitor_detect" design_area="show_if">
<MySource_SET name="condition" value="user_ip"/>
<MySource_THEN>
<MySource_print id_name="staff_nest" />
<MySource_print id_name="staff_nav" />
</MySource_THEN>
<MySource_ELSE>
<MySource_print id_name="customer_nest" />
<MySource_print id_name="cust_nav" />
</MySource_ELSE>
</MySource_AREA>
</div>