jockpost
Forum Replies Created
-
Worked for me on Thesis. Just had to turn off the auto-insert in the plugin settings. Then I deployed it with jeffsebring’s code.
Thanks Jeff!
Forum: Hacks
In reply to: How To Display Code On A Specific Category PageBelieve it or not, this worked:
<?php if ( $paged > 12 && is_category('nba') && $paged < 14 ) { ?> Text <?php } ?>
Seems a little hokey to me…
Forum: Hacks
In reply to: How To Display Code On A Specific Category PageSorry, but the code above didn’t work for me.
I’m very close…
The following code below is almost working. The problem is I can’t seem to get it to be the exact page.
<?php if ( $paged > 12 && is_category('nba')) { ?> <p>Test</p> <?php } ?>
This shows the code on all pages above Page 12. If I change the greater-than symbol to an equals sign, it stops working. How can I have it show up on one specific page in an archive (category)?
Forum: Fixing WordPress
In reply to: WP-Polls and Cufon conflict in IEI am right there with you guys. I have tried uninstalling, reinstalling, deactivating, reactivating… same results as you.
Forum: Plugins
In reply to: [Plugin: WP-Cufon] a:hover (@ h1) doesn’t workPerfect advice. Got me out of a jam. Thanks!
Forum: Fixing WordPress
In reply to: Someone registered as a user on my wordpress blog – possible hacker?I got the same guy as totalgaz. I deleted the account and unchecked Anyone Can Subscribe. I’m checking myPhpAdmin now. Thanks everyone!
Forum: Fixing WordPress
In reply to: How to: exclude categories wp_get_archivesBrilliant, it works perfectly. Thanks!
I have been getting the 500 Internal Server error occasionally when editing or refreshing the admin panel. (GoDaddy hosting, Linux)
I tried changing “FastCGI PHP 5.x” to just “PHP 5.x” per halytech’s suggestion. If the problem keeps happening I’ll let you all know.
Thanks!
Forum: Plugins
In reply to: [Plugin: RSS Shortcode] Open in New Window?Worked like a charm!
Forum: Fixing WordPress
In reply to: HTTP Error: Could not open handle for fopen()I am having this same problem and, like bostonacoustics, have the php.ini file with the aforementioned settings already.
; Whether to allow the treatment of URLs (like https:// or ftp://) as files.
allow_url_fopen = OnForum: Fixing WordPress
In reply to: RSS Widget not working since 2.7John25’s last suggestion worked perfectly for me.
Forum: Fixing WordPress
In reply to: How to get author’s name on posts (automatically)?I changed it in index.php and page.php here (snippet):
<div class="postmetadata">Posted by <?php the_author(', ') ?> | <?php the_time('F jS, Y') ?></div>
I guess it may depend on the theme you are using. But if you see a spot that has the_category in the code and you would like to replace it with the author name, then replace the_category with the_author in any page you wish.