- delete time in the home calendar
- color in seminar menu
- order element by dae in the menu
- delete item's number restriction in menu
- acces to Language navigation menu
- navigation correction
- change traduction
<?php global $wptouch_settings; ?>
<div class="metabox-holder">
<div class="postbox">
<h3><span class="page-options"> </span><?php _e( "Logo Icon // Menu Items & Pages Icons", "wptouch" ); ?></h3>
<div class="left-content">
<h4><?php _e( "Logo / Home Screen Icon <br />& Default Menu Items", "wptouch" ); ?></h4>
<p><?php _e( "Choose the logo displayed in the header (also your bookmark icon), and the pages you want included in the WPtouch drop-down menu.", "wptouch" ); ?>
<strong><?php _e( "Remember, only those checked will be shown.", "wptouch" ); ?></strong></p>
<p><?php _e( "Enable/Disable default items in the WPtouch site menu.", "wptouch"); ?></p>
<br /><br />
<h4><?php _e( "Pages + Icons", "wptouch" ); ?></h4>
<p><?php _e( "Next, select the icons from the lists that you want to pair with each page menu item.", "wptouch" ); ?></p>
<p><?php _e( "You can also decide if pages are listed by the page order (ID) in WordPress, or by name (default).", "wptouch" ); ?></p>
</div><!-- left-content -->
<div class="right-content wptouch-pages">
<ul>
<li><select name="enable_main_title">
<?php bnc_get_icon_drop_down_list( $wptouch_settings['main_title']); ?>
</select>
<?php _e( "Logo & Home Screen Bookmark Icon", "wptouch" ); ?>
<br />
</li>
</ul>
<ul>
<li><input type="checkbox" class="checkbox" name="enable-main-home" <?php if (isset($wptouch_settings['enable-main-home']) && $wptouch_settings['enable-main-home'] == 1) echo('checked'); ?> /><label for="enable-main-home"><?php _e( "Enable Home Menu Item", "wptouch" ); ?></label></li>
<li><input type="checkbox" class="checkbox" name="enable-main-rss" <?php if (isset($wptouch_settings['enable-main-rss']) && $wptouch_settings['enable-main-rss'] == 1) echo('checked'); ?> /><label for="enable-main-rss"><?php _e( "Enable RSS Menu Item", "wptouch" ); ?></label></li>
<li><input type="checkbox" class="checkbox" name="enable-main-email" <?php if (isset($wptouch_settings['enable-main-email']) && $wptouch_settings['enable-main-email'] == 1) echo('checked'); ?> /><label for="enable-main-email"><?php _e( "Enable Email Menu Item", "wptouch" ); ?> <small>(<?php _e( "Uses default WordPress admin e-mail", "wptouch" ); ?>)</small></label><br /><br /><br /></li>
<?php if ( count( $pages ) ) { ?>
<li><br /><br />
<select name="sort-order">
<option value="name"<?php if ( $wptouch_settings['sort-order'] == 'name') echo " selected"; ?>><?php _e( "By Name", "wptouch" ); ?></option>
<option value="page"<?php if ( $wptouch_settings['sort-order'] == 'page') echo " selected"; ?>><?php _e( "By Page ID", "wptouch" ); ?></option>
</select>
<?php _e( "Menu List Sort Order", "wptouch" ); ?>
</li>
<?php } ?>
<?php $pages = bnc_get_pages_for_icons(); ?>
<?php if ( count( $pages ) ) { ?>
<?php foreach ( $pages as $page ) { ?>
<li><span>
<input class="checkbox" type="checkbox" name="enable_<?php echo $page->ID; ?>"<?php if ( isset( $wptouch_settings[$page->ID] ) ) echo " checked"; ?> />
<label class="wptouch-page-label" for="enable_<?php echo $page->ID; ?>"><?php echo $page->post_title; ?> <?php _e( "Page", "wptouch" ); ?></label>
</span>
<select class="page-select" name="icon_<?php echo $page->ID; ?>">
<?php bnc_get_icon_drop_down_list( $wptouch_settings[ $page->ID ]); ?>
</select>
</li>
<?php } ?>
<?php } else { ?>
<strong ><?php _e( "You have no pages yet. Create some first!", "wptouch" ); ?></strong>
<?php } ?>
</ul>
</div><!-- right-content -->
<div class="bnc-clearer"></div>
</div><!-- postbox -->
</div><!-- metabox -->