dirt2
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Similar Posts] Code in Input Causes ProblemThis problem took care of itself, after updated another setting on the same page it went back to normal.
Forum: Plugins
In reply to: How to align Show_Count numbers to the right?Figured this out using a code provided in this post:
http://wordpress.org/support/topic/239885?replies=4Forum: Plugins
In reply to: i installed poll but it doesnt vote and show resultsMake sure to view the read me and look at the usage instructions:
http://lesterchan.net/wordpress/readme/wp-polls.htmlThey have their own support forum as well, maybe the topic exists and you can try searching it.
http://forums.lesterchan.net/index.php?board=15.0The only problem with that is that I want to try something like this:
http://i28.tinypic.com/10mvns2.jpgSo I don’t know if it’s the best method.
Forum: Fixing WordPress
In reply to: [Plugin: WP Post Thumbnail] No thumbnail on Category pageWas going to ask the same thing, shows up for search, tags but not categories..
Forum: Themes and Templates
In reply to: Tutorials and Guides for Adding Templates to Single Posts?Great thanks that one small -> code changed everything!
Thanks!Forum: Themes and Templates
In reply to: Tutorials and Guides for Adding Templates to Single Posts?Is that code possibly outdated?
I tried it and I got an error saying Unexpected “>” on line 2 (where it obviously says >post)So I removed it and it doesn’t do anything, I changed the first category to 72 (which is my fonts ID for my site) and I have it linked to fonts.php which I basically just copied and pasted my normal single.php except I added a bunch of text to it to tell if it was correct.
I replaced my current single.php post with:
<?php $post = $wp_query- post; if ( in_category('72') ) { include(TEMPLATEPATH . '/fonts.php'); } else { include(TEMPLATEPATH . '/single2.php'); } ?>I should note that it does something, not sure what.
Because there’s no single.php so the else{ must be working.Thank you for the response nonetheless.