Getting started…

Forums Forums Menus Getting started…

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1270
    jedwardedens
    Member

    Okay, so I’ve installed the PixoPoint Menu Plugin and am currently using the Eximius Theme for WordPress.

    Here is my Header.php code so you can have an idea of what this particular theme’s navigation code looks like.

    [code:24y0ccds]<!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">
    <head>
    <meta http-equiv="Content-Type" content="<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>" />
    <title><?php if (is_single() || is_page() || is_archive()) { ?>
    <?php if (get_bloginfo(‘name’) <> ”) { ?> <?php wp_title(‘|’,true,’right’); ?> <?php } ?>
    <?php if (get_bloginfo(‘name’) == ”) { ?> <?php wp_title(”,true); ?> <?php } ?>
    <?php } ?>

    <?php bloginfo(‘name’); ?> </title>
    <meta name="description" content="<?php bloginfo(‘description’); ?>" />
    <meta name="keywords" content="filmdogs, film dogs, filmdogsonline, movies, films, pictures, reviews, podcasts, blog, blogging, blogs, news, articles, columns, comics, webcomics, weekly comics, best of lists, lists, top lists, the pack" />
    <link rel="shortcut icon" href="<?php bloginfo(‘template_directory’); ?>/images/favicon.ico" type="image/x-icon" />
    <link rel="stylesheet" type="text/css" href="<?php bloginfo(‘template_directory’); ?>/style.css" media="all" />
    <link rel="alternate" type="application/rss+xml" title="<?php bloginfo(‘name’); ?> RSS Feed" href="<?php bloginfo(‘rss2_url’); ?>" />
    <link rel="pingback" href="<?php bloginfo(‘pingback_url’); ?>" />

    <?php
      if(!defined("PHP_EOL")) define("PHP_EOL", strtoupper(substr(PHP_OS,0,3) == "WIN") ? "rn" : "n");
        print ‘<style type="text/css" media="all">’.PHP_EOL;
    if(get_option(‘Eximius_bgcolor’)==’636566′){
    print ‘body { background:#6e1e1e url("’.get_bloginfo(‘template_url’).’/images/background.png’.’") repeat-x; }’.PHP_EOL;
    }
    else
    {
    print ‘body { background-color: #’.get_option(‘Eximius_bgcolor’).’; }’.PHP_EOL;
    }
      if(get_option(‘Eximius_hdrimage’)==’yes’){
           print ‘#header{ background: url("’.get_option(‘Eximius_hdrimagepath’).’") no-repeat center top; }’.PHP_EOL;
        print ‘#header { height: ‘.get_option(‘Eximius_hdrimageheight’).’px; }’.PHP_EOL;

      }
       else {
         print ‘#header { background: url("’.get_bloginfo(‘template_url’).’/images/header.png’.’") no-repeat ; }’.PHP_EOL;
       print ‘#header { height: 100px; }’.PHP_EOL;
       }

      print ‘</style>’.PHP_EOL;
    ?>

    <?php wp_head(); ?>
    </head>

    <body>
    <div id="container">
        <div id="header">

    <h1 class="blogtitle"> <a href="<?php echo
    get_option(‘home’); ?>/"></a></h1>
    <?php if(get_option(‘Eximius_rssicon’)==’yes’) { ?>
        
    <a href="<?php bloginfo(‘rss2_url’); ?>" class="rssicon" title="RSS"></a>
    <?php } ?>
    <h3 class="slogantext"></h3>
        </div>
      <ul id="NaviBar">
    <li><a <?php if (is_page(‘home’)) echo(‘class="current" ‘); ?>href="<?php bloginfo(‘url’); ?>/">News</a></li>
            <?php
    if(get_option(‘Eximius_navbar’) == ‘categories’) {
    wp_list_categories(‘title_li=0&orderby=name&show_count=0&depth=1’);
    } else {
    wp_list_pages(‘title_li=0&sort_column=menu_order&depth=1’);
    }
    ?> 
            <?php if(get_option(‘Eximius_search’)==’yes’) { ?>
            <form method="get" id="search" action="<?php bloginfo(‘home’); ?>/">
            <div><input type="text" value="Search" name="s" id="searchbox" onFocus="if (this.value == ‘Search’) {this.value = ”;}" onBlur="if (this.value == ”) {this.value = ‘Search’;}" />
            <input type="image" src="<?php bloginfo(‘template_directory’); ?>/images/go.png" align="top" alt="Search" class="go" value="Search" />
           
    </div>
            </form>
            <?php } ?>
        </ul>[/code:24y0ccds]

    I’ve tried removing code in order to place the needed:

    [code:24y0ccds]<?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();}; ?>[/code:24y0ccds]

    in order to use this Plugin, but it has usually ended in error.

    The website is located at: http://www.filmdogsonline.com

    Any help would be greatly appreciated. Thank you.

    J.

    #8010

    You don’t have the PixoPoint Menu plugin installed. You have "Ryans Suckerfish WordPress plugin" installed.

    That plugin doesn’t add a menu to your site, it adds the Suckerfish script (which the PixoPoint Menu plugin also does).

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.