- This topic has 1 reply, 2 voices, and was last updated 15 years ago by imported_Ryan.
-
AuthorPosts
-
November 13, 2009 at 7:04 pm #1089nickycdkMember
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">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>" />
<title><?php wp_title(‘«’, 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>November 16, 2009 at 1:14 pm #7271imported_RyanMemberI’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.
-
AuthorPosts
- You must be logged in to reply to this topic.