digitaldave2
Forum Replies Created
-
Forum: Plugins
In reply to: Auto Links 0.94 Can’t hold keywordsOr if no one knows a fix is there other plugins that work similar? I just want something I can set keywords up into so it automatically converts the keywords when I use them in a post to be converted to links.
Forum: Themes and Templates
In reply to: Displaying Custom Field on index pageOk I figured out that I need to use the_meta function but with this you can’t define parameters. I only want one key to display.
Can I set a parameter to set the Key to only display that field and not all of the others?
Forum: Plugins
In reply to: Cheesy Plugin IdeaDo you know how to code that into the index template so it shows?
Forum: Themes and Templates
In reply to: Deichnetz Theme CSS help/Also I have been trying to use Auto Links 0.94 and just loses all the keywords when I login to the panel. Anyone have this issue?
Forum: Your WordPress
In reply to: hide an post on main pageI inserted the provided code into my index.php page but it gets stuck in a loop outputting over and over again.
Is there anyone that’s ever done this that can explain it?
Forum: Your WordPress
In reply to: hide an post on main pageWhere does this go? In the index.php page?
Didn’t this help?:
Look at the code that says:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
That’s the start of the loop. Add
<?php if ( !(in_category(‘3’) && is_home()) ) { ?>
after that to only show posts that don’t belong to category ‘test’. To know which category id ‘test’ has look in your categories tab. Also add
<?php } ?>
right before
<?php endwhile; else: ?>
<?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?>Forum: Your WordPress
In reply to: hide an post on main pageWhere do we place this code for it to work correctly?
<?php if ( !(in_category(‘3’) && is_home()) ) { ?>
Forum: Fixing WordPress
In reply to: Good CSS Question about sidebarOk after I set the sidebar to float what would I do?
Forum: Fixing WordPress
In reply to: Good CSS Question about sidebarI just don’t know the code to add to the stylesheet telling it to expand the post div to the entire width after the sidebar ends.
Forum: Plugins
In reply to: Category Post CounterI got it to work it was simply a block I forgot about.
Thanks guys
Forum: Plugins
In reply to: Category Post CounterThere’s plenty of room on the bar. It isn’t taking the
<ul>
tags either as far as color and size. Is there a way to run the optioncount argument seperately?
<li>Forum: Plugins
In reply to: Category Post CounterWhat in the css would break it to the next line?
Forum: Plugins
In reply to: Category Post Counter<?php wp_list_cats(‘sort_column=name&optioncount=1’); ?>
Ok this code works but displays the count below the category
New Posts
(5)Is there an argument to have it all show on one line?
Forum: Plugins
In reply to: Category Post Countercan someone please help?