WordPress Subpages Fancybox Trouble

So, if I understand your question correctly, your problem is that your iframes are showing the theme (nav menu, sidebar, etc.) and you don’t want them to. If that’s the case, I’d recommend creating a new Page Template that is styled after your bio iframe (no menus, no sidebar). There’s more info on creating custom … Read more

Undefined index: debuging error for theme option template snippet

Looking at your actual source, the relevant portion (with line numbers) is this: 745 if ( $_GET[‘page’] == basename(__FILE__) ) { 746 747 if ( ‘save’ == $_REQUEST[‘action’] ) { 748 749 foreach ($options as $value) { 750 update_option( $value[‘id’], $_REQUEST[ $value[‘id’] ] ); } 751 752 foreach ($options as $value) { 753 if( isset( … Read more

URL conflict with a ‘Single Page Layout’

You can handle that with a hash (the way javascript does by default) and have the url become example.com#people, or any other delimiter really. It should be as simple as changing the character you’re parsing the url for. UPDATE: Example code as per comments $args = array( ‘label’ => ‘Your Label’, ‘labels’ => $labels, //define … Read more

JQuery Equal Height in Rows Conflicts Only Works without Registering wp_footer();

You were really close, I think these fixes should point you in the right direction. I went through and addressed some of your syntax issues and your conditional hooks. Hopefully this will get you rolling in the right direction. // Load ‘Working’ jQuery add_action( ‘init’, ‘jquery_register’ ); // register from google and for footer function … Read more