- This topic has 4 replies, 2 voices, and was last updated 15 years, 10 months ago by
imported_Ryan.
-
AuthorPosts
-
January 10, 2010 at 1:11 pm #1182
thomaswigley85
MemberHi,
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
January 10, 2010 at 1:20 pm #7569imported_Ryan
MemberThe 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.
January 10, 2010 at 2:37 pm #7570thomaswigley85
MemberHi,
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
January 10, 2010 at 11:29 pm #7571imported_Ryan
MemberI 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]
January 10, 2010 at 11:30 pm #7572imported_Ryan
MemberBTW, I deleted your guest post since it was identical to your other post.
-
AuthorPosts
- You must be logged in to reply to this topic.