adutty
Forum Replies Created
Viewing 3 replies - 1 through 3 (of 3 total)
-
Forum: Reviews
In reply to: [GEO my WP] Free Version Not WorkingThank you Eyal. I acknowledge writing this post having hit a roadblock. I did initiate a thread in a support group. Also, we are going to purchase the license to obtain technical support. I will be more than willing to adjust my rating if technical support can assist to resolve issues with the pro license.
Forum: Plugins
In reply to: [WP Photo Album Plus] Slideshow not workingHey-o!! awesome. thanks
Forum: Plugins
In reply to: [WP Photo Album Plus] Slideshow not workingHere is my header.php file:
/** * Header Template * * Here we setup all logic and XHTML that is required for the header section of all screens. * * @package WooFramework * @subpackage Template */ global $woo_options; ?><!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <title><?php woo_title(''); ?></title> <?php woo_meta(); ?> <link rel="stylesheet" type="text/css" href="<?php bloginfo( 'stylesheet_url' ); ?>" media="screen" /> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> <?php wp_head(); woo_head(); ?> before </head> <body <?php body_class(); ?>> <?php woo_top(); ?> <div id="wrapper"> <?php if ( function_exists( 'has_nav_menu' ) && has_nav_menu( 'top-menu' ) ) { ?> <div id="top"> <nav class="col-full" role="navigation"> <?php wp_nav_menu( array( 'depth' => 6, 'sort_column' => 'menu_order', 'container' => 'ul', 'menu_id' => 'top-nav', 'menu_class' => 'nav fl', 'theme_location' => 'top-menu' ) ); ?> </nav> </div><!-- /#top --> <?php } ?> <?php woo_header_before(); ?> <header id="header" class="col-full"> <hgroup> <?php $logo = get_template_directory_uri() . '/images/logo.png'; if ( isset( $woo_options['woo_logo'] ) && $woo_options['woo_logo'] != '' ) { $logo = $woo_options['woo_logo']; } if ( isset( $woo_options['woo_logo'] ) && $woo_options['woo_logo'] != '' && is_ssl() ) { $logo = preg_replace("/^http:/", "https:", $woo_options['woo_logo']); } ?> <?php if ( ! isset( $woo_options['woo_texttitle'] ) || $woo_options['woo_texttitle'] != 'true' ) { ?> <a>" title="<?php bloginfo( 'description' ); ?>"> <img src="<?php echo $logo; ?>" alt="<?php bloginfo( 'name' ); ?>" /> </a> <?php } ?> <h1 class="site-title <?php if ( $woo_options['woo_texttitle'] == 'true' ) { echo 'visible'; } ?>"><a>"><?php bloginfo( 'name' ); ?></a></h1> <p class="site-description <?php if ( $woo_options['woo_tagline'] == 'true' ) { echo 'visible'; } ?>"><?php bloginfo( 'description' ); ?></p> </hgroup> <?php if ( isset( $woo_options['woo_ad_top'] ) && $woo_options['woo_ad_top'] == 'true' ) { ?> <div id="topad"> <?php if ( isset( $woo_options['woo_ad_top_adsense'] ) && $woo_options['woo_ad_top_adsense'] != '' ) { echo stripslashes( $woo_options['woo_ad_top_adsense'] ); } else { if ( isset( $woo_options['woo_ad_top_url'] ) && isset( $woo_options['woo_ad_top_image'] ) ) ?> <a>"><img src="<?php echo $woo_options['woo_ad_top_image']; ?>" width="468" height="60" alt="advert" /></a> <?php } ?> </div><!-- /#topad --> <?php } ?> <?php woo_nav_before(); ?> <h3 class="nav-toggle"><a href="#navigation"><?php _e('Main navigation', 'woothemes'); ?></a></h3> <nav id="navigation" class="col-full" role="navigation"> <?php if ( function_exists( 'has_nav_menu' ) && has_nav_menu( 'primary-menu' ) ) { wp_nav_menu( array( 'depth' => 6, 'sort_column' => 'menu_order', 'container' => 'ul', 'menu_id' => 'main-nav', 'menu_class' => 'nav', 'theme_location' => 'primary-menu' ) ); } else { ?> <ul id="main-nav" class="nav fl"> <?php if ( is_page() ) $highlight = 'page_item'; else $highlight = 'page_item current_page_item'; ?> <li class="<?php echo $highlight; ?>"><a>"><?php _e( 'Home', 'woothemes' ); ?></a> <?php wp_list_pages( 'sort_column=menu_order&depth=6&title_li=&exclude=' ); ?> <!-- /#nav --> <?php } ?> </nav><!-- /#navigation --> <?php woo_nav_after(); ?> </header><!-- /#header --> <?php woo_content_before(); ?>[Please use the code buttons when posting code – as is, your code may have been corrupted ]
Viewing 3 replies - 1 through 3 (of 3 total)