Unsure what is going wrong with my drop down intergration

Forums Forums Menus Unsure what is going wrong with my drop down intergration

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1182

    Hi,

    I am trying to use your plugin but I cant configure it to display correctly.

    Here is the link to the site: http://www.thomaswigley.co.uk/Yvonne%5B/url:23o16jbr%5D

    As you can see, the sub pages are being shown all the time.

    Here is also a link to my CSS:

    http://www.thomaswigley.co.uk/Yvonne/wp-content/themes/photo-gallery-light-free/style.css%5B/url:23o16jbr%5D

    Many thanks

    #7569

    The style sheet isn’t loading … http://www.thomaswigley.co.uk/Yvonne/wp … /style.php

    In fact nothing is loading. It looks like the plugin isn’t there, which makes no sense whatsoever since it is clearly loading something.

    Is it possible that you changed the folder name? If you did, then there is no way the plugin will work.

    #7570

    Hi,

    Thnks for the quick reply.

    I have sorted the issue with the plugin – i had put in in the wrong file. you can now navigate to http://www.thomaswigley.co.uk/Yvonne/wp-content/plugins/pixopoint-menu/css/style.php%5B/url:3ck2jq7x%5D

    But its still not working.

    I think it might be something to do with my header.php.

    Here is the code:

    [code:3ck2jq7x]
    <div id="header">

    <div id="headerleft">
    <h1><a href="<?php echo get_settings(‘home’); ?>/"><?php bloginfo(‘name’); ?></a></h1>
    </div>

    <div id="headerright">
    <ul>
    <?php wp_list_pages(‘title_li=&depth=1’); ?>
    <?php if (function_exists(‘pixopoint_menu’)) {pixopoint_menu();}; ?>
    </ul>

    </div>

    </div>
    [/code:3ck2jq7x]

    Thanks

    #7571

    I don’t think you have activated the plugin.

    Also, you can wrap the menu in <ul> tags like that and you have placed a separate unordered list alongside it which also won’t work. You would normally use that second list as a fall-back for when the plugin isn’t activated. Try this instead:
    [code:16p8vt6v]<div id="header">

      <div id="headerleft">
          <h1><a href="<?php echo get_settings(‘home’); ?>/"><?php bloginfo(‘name’); ?>[/url]</h1>
      </div>
     
      <div id="headerright">

    <?php
      if (function_exists(‘pixopoint_menu’)) {
          pixopoint_menu();
      }
      else {
          wp_list_pages(‘title_li=&depth=1’);
      }
    ?>

      </div>

    </div>[/code:16p8vt6v]

    #7572

    BTW, I deleted your guest post since it was identical to your other post.

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