Problems, need help? Have a tip or advice? Post it here.
2 posts Page 1 of 1
I know that I can create a notice message at the top of templates, such as:

Code: Select all
<cms:config_list_view>
    <cms:html>
        <cms:show_warning heading='Important' >
            Important Message
        </cms:show_warning>
    </cms:html>
</cms:config_list_view>


Can this be done in <cms:globals> so it shows when admin enters the Manage Globals section? I would like to place a static messaging that is only related to the settings within there.
I ended up using the message type for editable region:

Code: Select all
<cms:globals>
   <cms:editable name='notice_msg' type='message' order='1'>
      <div style="padding: 15px; background: white; border: 1px solid grey;">
         <p>Important Message.</p>
      </div>
   </cms:editable>
   ... rest of the editable regions.       
</cms:globals>
2 posts Page 1 of 1
cron