brownrice
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Control active menu link when multiple categories?I hope this is clearer:
I have created a menu consisting of categroies. Some of our post need to go into more than one category. We want the categroy of the current post to be bold (I have done this by referencing ‘current-menu-parent’ in the css file). The problem now is, multiple categories appear bold. Can I control which of the multiple categories displays bold?
Thanks
Forum: Fixing WordPress
In reply to: How to convert CSSPLAY Drop Everything menu to WordPress?Thanks, no I did not. I will see if I can adapt one of them to display
<div>, <p> and <img>tags?Forum: Fixing WordPress
In reply to: Control active menu link when multiple categories?Is my post unclear?
Forum: Fixing WordPress
In reply to: Previous and Next post links to always stay visibleThanks for the code al,
I am a part time web developer and am just starting out with PHP, I played arround with your code until I got it to do what I wanted. I am not sure if it is valid, I am not getting any errors – is there a php validator?
I tried to cut out anything I would not need from the code. I put a graphic in place of the text links – not sure if the <img> tags are in correctly? I tried to make sense of the code, but as I said I am just starting out with PHP. You can see it working on our dev site: dev dot indiability dot org / news
What do you mean by optimized?
Below is used in index.php – I did minor variations in archive.php and single.php
<?php if(get_adjacent_post(false, '', true)) { echo previous_post_link('%link' , '<img class="prev-page" id="prev-arrow" src="' . get_bloginfo('stylesheet_directory') . '/graphics/arrow.jpg" />'); } else { echo previous_post_link('%link' , '<img class="prev-page" id="prev-arrow" src="' . get_bloginfo('stylesheet_directory') . '/graphics/arrow.jpg" /> '); $newest_post = get_posts('numberposts=1&order=DESC&orderby=date'); $newest_post_id = $newest_post[0]->ID; echo '<a href="'.get_permalink($newest_post_id).'"> </a>'; } ?> <?php if(get_adjacent_post(false, '', false)) { echo next_post_link('%link' , '<img class="next-arrow" src="' . get_bloginfo('stylesheet_directory') . '/graphics/arrow.jpg" />'); } else { echo ''; $eldest_post = get_posts('numberposts=1&order=ASC&orderby=date'); $eldest_post_id = $eldest_post[0]->ID; echo '<a href="'.get_permalink($eldest_post_id).'" title="link to '.get_the_title($eldest_post_id).'"><img class="next-arrow" src="' . get_bloginfo('stylesheet_directory') . '/graphics/arrow.jpg" /></a>'; } ; ?>Forum: Plugins
In reply to: Jwplayer plugin only shows on posts?Bump!
So I have got the player working on pages exept when I use ‘Magazine columns plugin’?
Can anyone help with this?
Forum: Plugins
In reply to: Jwplayer plugin only shows on posts?I am using magazine columns plugin which must be causing a confliction? Any ideas please.
I am also using Twentyten theme – any suggestions for something else that works as a basic CMS with Magazine columns?
Thanks
Forum: Plugins
In reply to: Wp as a member’s only area cmsDur, I over read this option:
‘Ignore the default settings and make this page visible to everyone’
Forum: Plugins
In reply to: Wp as a member’s only area cmsEdit:
My Problem
I have set my Member access’s ‘page redirect’ to go to my static ‘home page’ where the side bar login is, but as this is a page, you are redirected to mysite/members/wp-login.php. This makes the sidebar login redundant, any solutions?
Hope it is clear now
Thanks
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Slide show not working NEXTGEN GALLERY@ daisybee
Thanks, this worked for me too.
i.e “http://www.domainname.co.uk/wp-content/uploads/imagerotator.swf”
Took me ages to find out the problem – inserting the entire url should have been a priority trouble shooter though really…
Forum: Plugins
In reply to: Why does the links Widget disapear once you have added it to a sidebar?I added Breukie’s Links plugin which offers you the possibility to make available multiply link widget instances to add to your sidebars. The only thing is, I either do not understand how to edit the parameters, or the widgets all generate the same links. I am trying to make unique sidebars. Can anyone help?
Cheers
Forum: Themes and Templates
In reply to: Please Help Create A WordPress ThemeWould the next step be to copy the directory structure of say the default wp theme, eg. have footer.php header.php image.php etc?