garbonzo
Forum Replies Created
-
Forum: Plugins
In reply to: WP – Post RatingsYou’d get a lot of help at the plugin author’s forum.
Forum: Themes and Templates
In reply to: Different Header On One PostUse Conditional Tags
Forum: Plugins
In reply to: wordpress as CMSThere are a lot of ways you could do this, here is one of them:
create a home page template where the posts do not have the comments form visible. Now, nobody can submit a comment on the home page.
To do this, you’ll need to understand the template hierarchy (of which there is ample documentation in the codex)Forum: Plugins
In reply to: How to code plugin to cleanup after itself if uninstalled?Neato, thanks everybody.
Forum: Everything else WordPress
In reply to: Are templates and plugins re-read for each visitor?Thanks NC
Forum: Plugins
In reply to: How to code plugin to cleanup after itself if uninstalled?But how do I tell the plugin to ‘sense’ that it’s being uninstalled, and to therefore drop the table?
thanks
Forum: Fixing WordPress
In reply to: How to reference absolute path to root from themes folder?Never mind, figured it out. Mods, feel free to delete this post.
Forum: Themes and Templates
In reply to: Firefox display problemsI guess firefox adds in that extra /font, because I don’t see it anymore. Site looks visible now, kudos. What do you mean by intermittent?
Forum: Themes and Templates
In reply to: Replacing a Page Title with an ImageThe reason why it works funny is because the image code was also inserted into the title attribute of the link.
Forum: Themes and Templates
In reply to: Firefox display problemsOkay, there is one more font color #fff, right in front of <div id=”sidebarright”>
Delete that one and also the </font> at the very bottom of your footer, and I think you’ll be alright.
Forum: Plugins
In reply to: Is define(enable_cache, true) not working in 2.5?Thanks for the info Otto!
Forum: Themes and Templates
In reply to: Bloody sidebar is messed up!Your code is being ignored.
The line `<?php if ( !function_exists(‘dynamic_sidebar’)
|| !dynamic_sidebar() ) : ?>`is saying, that IF the dynamic sidebar is not available or being used, then do all the stuff you wrote. Unless you’ve done something to your wordpress’s core, the dynamic sidebar is available and working. Which means everything you wrote after that line is ignored.
But I think you want to able to use the dynamic sidebars as well as all your code, so do EyePhoto’s suggestion and put an endif, here:
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : endif; ?>
Forum: Themes and Templates
In reply to: Firefox display problemsYou have <font color=”#ffffff”> embedded EVERYWHERE! It is over-riding all your css color styles.
Forum: Themes and Templates
In reply to: referencing theme directory from custom functionTake a look at get_bloginfo
Forum: Plugins
In reply to: Need a plugin to add posts to a categoryI need this to automate a few things, without me having to log in.