I will describe best I can what I am trying to do. I am using mobileview plugin for www.blackberrysites.com. It works really well except Home is the only thing in Header on Mobile site.
Pages are at the bottom of the mobile site and work fine. I would like to add PAGES to the Header portion next to Home. So people wont have to scroll to bottom.
I see under Menu Bar settings >> Home link in Page Menu Bar is why Home is showing up in my mobile header. I went to Appearance>Editor>Header and see the script is this.
// load postinfo function
include (TEMPLATEPATH . '/functions/bfa_postinfo.php');
// if this is a multi post page, and a "home" link is set for the next/prev navigation on multi post pages,
// figure out if this the blog homepage, and remove the "home" link from the next/prev navigation if true
if ( !is_single() AND !is_page() AND $bfa_ata_home_multi_next_prev != '' ) {
$nav_home_div_on = '<div class="home"><a href="' . get_option('home') . '/">' . $bfa_ata_home_multi_next_prev . '</a></div>';
// for WP 2.5 and newer
if ( function_exists('is_front_page') ) {
// make sure this is the real homepage and not a subsequent page
if (is_front_page() && !is_paged() ) {
$nav_home_add = ""; $nav_home_div = "";
} else {
$nav_home_add = '-home';
$nav_home_div = $nav_home_div_on;
}
}
// for WP 2.3 and older
// make sure this is the real homepage and not a subsequent page
elseif ( is_home() && !is_paged() ) {
$nav_home_add = ""; $nav_home_div = "";
}
else {
$nav_home_add = '-home';
$nav_home_div = $nav_home_div_on;
}
Could I manipulate this so that mobileview will also add pages in the header? Also keep in mind I could be way off base.
This is not a big deal at all time wise and if another mobile plugin is better than view mobile let me know.
Flynn if you want to private message me your paypal email addy I will just donate that way. Just a thought. Thank You