aakoch
Forum Replies Created
-
I found that it was the fault of my template. I am using one based on Blue Mist 1.5 by AOE media GmbH. In the comments.php file I removed the part where it checks the post password with the cookie value.
It starts with:
if (!empty($post->post_password)) { // if there's a passwordI replaced it with the default:
if ( post_password_required() ) { ?> <p class="nocomments">This post is password protected. Enter the password to view comments.</p> <?php return; }Forum: Themes and Templates
In reply to: HELP. Comments not postingI fixed the problem Yanzibar was having. I’m not sure it’s the same that you’re having. The template is missing the post id for when someone is logged in.
<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
That needs to be placed in the comments.php file in the<?php if ( $user_ID ) : ?>block.Forum: Plugins
In reply to: the best way to override a Wp functionWordPress version 2.2.1 doesn’t have the file pluggable-functions.php. Instead I see pluggable.php and inside it says, “/* These functions can be replaced via plugins. They are loaded after plugins are loaded. */”.
So I want to override wp_new_user_notification and I tried creating a plugin to do this, but I don’t have it right because it’s not working. Do I just define the function? Do I add an action?
Forum: Plugins
In reply to: Adhesive PluginDoes WP-Sticky replace Adhesive?
Forum: Requests and Feedback
In reply to: _wp_page_template keeps being resetI think I figured it out. In the template file you have to have this as the first thing in the file.
<?php
/*
Template Name: Snarfer
*/
?>