Cannot get Suckerfish menu to work, WordPress 2.8.5

Forums Forums Menus Cannot get Suckerfish menu to work, WordPress 2.8.5

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1089
    nickycdk
    Member

    Hey, i cant get the plugin to work…
    After i’ve activated the plugin nothing happens – It doesn’t render anything… ???

    My header.php looks like this:

    <!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"&gt;
    <head profile="http://gmpg.org/xfn/11"&gt;
    <meta http-equiv="Content-Type" content="<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>" />
    <title><?php wp_title(‘&laquo;’, true, ‘right’); ?> <?php bloginfo(‘name’); ?></title>
    <meta name="generator" content="WordPress <?php bloginfo(‘version’); ?>" /> <!– leave this for stats –>
    <link rel="stylesheet" href="<?=bloginfo(‘template_url’)?>/css/meetme.css" 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="pingback" href="<?php bloginfo(‘pingback_url’); ?>" />
    <script language="JavaScript" type="text/javascript" src="<?=bloginfo(‘template_url’)?>/jquery/jquery.js"></script>
    <script language="JavaScript" type="text/javascript" src="<?=bloginfo(‘template_url’)?>/jquery/jquery-1.3.2.min.js">
    <!—->
    </script>

    <?php wp_head(); ?>
    <script type="text/javascript">
      $(document).ready(function(){
    $(‘.fadein1’).hover(function(){
    $(‘#container3’).hide();
    $(‘#container2’).hide();
    $(‘#container1’).fadeIn(‘fast’);
    return false;
    });
    $(‘.fadein2’).hover(function(){
    $(‘#container1’).hide();
    $(‘#container3’).hide();
    $(‘#container2’).fadeIn(‘fast’);
    return false;
    });
    $(‘.fadein3’).hover(function(){
    $(‘#container1’).hide();
    $(‘#container2’).hide();
    $(‘#container3’).fadeIn(‘fast’);
    return false;
    });
      });
    </script>
    </head>

    <body>
    <div id="pagecontain">

    <div id="top">
    <div class="logo">
    <a href="<?php echo get_option(‘home’); ?>/">
    <img src="<?=bloginfo(‘template_url’)?>/images/logo.png" alt="<?php bloginfo(‘name’); ?><?php bloginfo(‘description’); ?>" title="<?php bloginfo(‘name’); ?><?php bloginfo(‘description’); ?>" />
    </a>
    </div>
    <div class="clear"></div>
    </div>

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

    #7271

    I’m guessing it’s probably working exactly how it’s supposed to. All that plugin does these days is add a suckerfish script between your <head> tags.

    The instructions don’t mention anything about adding a suckerfish(); function into your theme anymore as the instructions say that users looking to add a dropdown menu to their site should now use the PixoPoint menu plugin instead … https://geek.hellyer.kiwi/products/pixopoint-menu/.

    Where did you read the instructions to add a suckerfish() function to your theme? I’ll go remove those instructions to save confusing anyone else if you can let me know where you found them.

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