- This topic has 3 replies, 3 voices, and was last updated 14 years, 10 months ago by imported_Ryan.
-
AuthorPosts
-
January 22, 2010 at 9:46 am #1216cresticoMember
Great Plugin, just one small problem i am running into is the fact that i can not get ride of my original wordpress menu, it is sitting on the header after the PixoPoint Menu and is creating duplicate menu.
my site is http://www.cresticofunding.com
Here is the code for header.php
[code:1bcq28yr]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(‘xhtml’); ?>>
<head profile="http://gmpg.org/xfn/11"><meta http-equiv="Content-Type" content="<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>" />
<meta name="language" content="en" /><title><?php wp_title(”); ?><?php if(wp_title(”, false)) { echo ‘ :’; } ?> <?php bloginfo(‘name’); ?></title>
<link rel="Shortcut Icon" href="<?php echo bloginfo(‘template_url’); ?>/images/favicon.ico" type="image/x-icon" /><link rel="stylesheet" href="<?php bloginfo(‘stylesheet_url’); ?>" type="text/css" media="screen" />
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo(‘name’); ?> RSS Feed" href="<?php bloginfo(‘rss2_url’); ?>" />
<link rel="alternate" type="application/atom+xml" title="<?php bloginfo(‘name’); ?> Atom Feed" href="<?php bloginfo(‘atom_url’); ?>" />
<link rel="pingback" href="<?php bloginfo(‘pingback_url’); ?>" /><?php if ( is_singular() ) wp_enqueue_script( ‘comment-reply’ ); ?>
<?php wp_head(); ?></head>
<body><div><a id="top"></a></div>
<div id="wrap">
<div id="top">
<img src="<?php bloginfo(‘template_url’); ?>/images/top.gif" alt="<?php bloginfo(‘name’); ?>" />
</div><div id="header">
<?php // begin code which decides if the header should display a logo image or dynamic text ?>
<?php if(get_theme_mod(‘header_blog_title’) == ‘Image’) { ?>
<div class="headerleft" id="imageheader">
<?php
if (is_home()) {
echo ‘<h1><a href="’.get_option(‘home’).’/">’.get_bloginfo(‘name’).'</a></h1>’;
} else {
echo ‘<h4><a href="’.get_option(‘home’).’/">’.get_bloginfo(‘name’).'</a></h4>’;
}
?>
<p><?php bloginfo(‘description’); ?></p>
</div>
<?php } else { ?>
<div class="headerleft">
<div class="headertext">
<?php if (is_home()) { ?>
<h1><a href="<?php echo get_settings(‘home’); ?>/"><?php bloginfo(‘name’); ?></a></h1>
<?php } else { ?>
<h4><a href="<?php echo get_settings(‘home’); ?>/"><?php bloginfo(‘name’); ?></a></h4>
<?php } ?>
<p><?php bloginfo(‘description’); ?></p>
</div>
</div>
<?php } ?>
<?php // end code ?><div class="headerright">
<?php // begin code for the eNews & updates section in the header ?>
<p><a class="rsslink" rel="nofollow" href="<?php bloginfo(‘rss_url’); ?>"><?php _e("Posts", ‘studiopress’); ?></a>
<a class="rsslink" rel="nofollow" href="<?php bloginfo(‘comments_rss2_url’); ?>"><?php _e("Comments", ‘studiopress’); ?></a></p>
<form id="subscribe" action="http://feedburner.google.com/fb/a/mailverify" method="post" target="popupwindow" onsubmit="window.open(‘http://feedburner.google.com/fb/a/mailverify?uri=<?php echo get_theme_mod(‘enews_id’); ?>’, ‘popupwindow’, ‘scrollbars=yes,width=550,height=520’);return true">
<p><?php _e("Sign up for email news and updates!", ‘studiopress’); ?></p>
<input type="text" value="<?php _e("Enter your email address...", ‘studiopress’); ?>" id="subbox" onfocus="if (this.value == ‘<?php _e("Enter your email address...", ‘studiopress’); ?>’) {this.value = ”;}" onblur="if (this.value == ”) {this.value = ‘<?php _e("Enter your email address...", ‘studiopress’); ?>’;}" name="email"/>
<input type="hidden" value="<?php echo get_theme_mod(‘enews_id’); ?>" name="uri"/>
<input type="hidden" name="loc" value="en_US"/>
<input type="submit" value="<?php _e("GO", ‘studiopress’); ?>" id="subbutton" />
</form>
<?php // end code ?>
</div>
</div>
<?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();} ?>
<div id="navbar"><ul id="nav">
<li><a href="<?php echo get_option(‘home’); ?>">Home</a></li>
<?php wp_list_pages(‘title_li=&sort_column=menu_order&depth=2’); ?></ul>
</div>
<div class="clear"></div>
<div id="subnavbar">
<ul id="subnav">
<?php wp_list_categories(‘orderby=name&title_li=&depth=2’); ?>
</ul></div>
<div class="clear"></div>[/code:1bcq28yr]
please let me know how i can fix this problem if possible.
thanks in advance
February 1, 2010 at 11:42 pm #7731imported_RyanMemberPerhaps change this:
[code:1ow8kfq3]<?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();} ?>
<div id="navbar"><ul id="nav">
<li><a href="<?php echo get_option(‘home’); ?>">Home</a></li>
<?php wp_list_pages(‘title_li=&sort_column=menu_order&depth=2’); ?></ul>
</div>[/code:1ow8kfq3]
To this:
[code:1ow8kfq3]<?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();} ?>[/code:1ow8kfq3]February 3, 2010 at 6:38 pm #7732AnonymousMemberHi,
Agreed, very awesome plugin! I was thrown into a wordpress project after a previous developer left, so this is all new to me. Sorry if this is a silly question. This is the site I’m working on: http://s87856.gridserver.com/
As you can see, I also have a duplicate menu at the bottom. The customized wordpress theme doesn’t appear to have a header.php file; instead it has everything in the theme’s index.php.
I pasted the code:
<?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();} ?>February 4, 2010 at 3:16 am #7733imported_RyanMemberIt says I don’t have access to that page.
-
AuthorPosts
- You must be logged in to reply to this topic.