Can’t seem to get this plugin to work

Forums Forums Menus Can’t seem to get this plugin to work

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #865
    conuficus
    Member

    I have an issue; where should I place the code in this Theme (Open Sourcerer)for it to be effective?

    Thanks for any help.

    This is the script from the Theme Header. Where would the extra piece of code go?

    <?php
    /*
    Template Name: Open Sourcerer
    */
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
    <html xmlns="http://www.w3.org/1999/xhtml&quot; <?php language_attributes() ?>>
    <!–<html xmlns="http://www.w3.org/1999/xhtml&quot; <?php language_attributes() ?>>–>
    <head profile="http://gmpg.org/xfn/11">&nbsp;
    <title><?php bloginfo(‘name’); ?> <?php wp_title(); ?></title>
        <meta http-equiv="Content-Type" content="<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>" />
        <link rel="stylesheet" href="<?php bloginfo(‘stylesheet_url’); ?>" type="text/css" media="screen,projection" />
        <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 wp_head(); ?>
    </head>

    <body>
    <div id="wrap"><!– Begin Wrap –>
      <div id="header"><!– Begin Header –>
          <div class="inside">
              <h1>
                  <a href="<?php echo get_option(‘home’); ?>/"><?php bloginfo(‘name’); ?>[/url]
              </h1>
              <p class="description"><?php bloginfo(‘description’); ?></p>
         
            </div>     
      </div><!– End Header –>
        <div id="menu">
            <ul id="nav">
              <?php wp_list_pages(‘sort_column=menu_order&title_li=’); ?>
        </ul>
      </div>

    If you need to view the test site:

    http://www.notablesnotes.com

    I have uploaded the Page Mash Plugin as well. Are there any tips to using these two together. I am not experienced, and could use information, the more the merrier.

    #6408
    paranoia
    Member

    Anywhere you want it to appear but I’m guessing here:

    -Replace-

        <div id="menu">
            <ul id="nav">
              <?php wp_list_pages(‘sort_column=menu_order&title_li=’); ?>
        </ul>
      </div>

    -With-

        <div id="menu">
            <?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();} ?></div>
      </div>

    #6409
    conuficus
    Member

    I’ve tried that, and what I get is what you see in the URL, a menu that doesn’t drop down, but displays every page.

    I thought I was doing something wrong with my location.

    #6410
    paranoia
    Member

    Oh..I think I might have made a small mistake in my post. Try this instead. If it doesn’t work then I’m afraid I’m not too sure and you should wait for Ryan’s reply. <img decoding=” title=”Smiley” />

    <div>
    <?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();} ?>
    </div>

    #6411
    conuficus
    Member

    Thanks, I will.

    I’ll let you know.

    #6412
    conuficus
    Member

    Nah…….just made the menu items smaller and bunched to the left.

    With regards to this being able to have hidden pages that appear once a top level page is highlighted:- Do I need to customize this setup, or is this a Page Mash issue?

    #6413

    If you are using PageMash, then I don’t think there will be any need to use the include or exclude pages feature in the Multi-level Navigation plugin. Otherwise, there isn’t much to it really, PageMash does it’s thing and when you use the ‘Pages’ or ‘Pages (single dropdown)’ options in the multi-level navigation plugin it will automatically use any of the changes you have made with PageMash.

    #6414

    I’m guessing you have the menu working the way you want it to now? It looked when I viewed it in Chrome.

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