wensaar
Aangemaakte reacties
1 reactie aan het bekijken (van in totaal 1)
-
Forum: Algemeen WordPress
In antwoord op: error bij posten comment als bezoeker zijndeBeste mensen,
Bedankt voor jullie snelle reactie! Ik heb wel mijn plugins gedownload (denk ik), alhoewel als ik bij mijn plugins kijk in WP, ik daar nog ‘activeren’ aan kan vinken. Heb ik dan uberhaupt wel plugins geïnstalleerd (even voor de duidelijkheid, ik ben dus niet heeeel handig met WP..)?
En updaten naar 3.0.3. wil ik maar al te graag doen, maar als ik op ‘je kunt nu updaten’ klik in het hoofdmenu van WP, kan ‘ie de pagina niet weergeven…
En nee, comments.php is nog steeds comments.php. Moet ik daar wat mee doen soms, in de HTML? Hieronder heb ik mijn comments.php maar even neergeknald..misschien vinden jullie hier iets in?
Superbedankt alvast!!
Groetjes,
Wendy
COMMENTS.PHP
<?php // Do not delete these lines if ('comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) die ('Please do not load this page directly. Thanks!'); if (!empty($post->post_password)) { // if there's a password if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) { // and it doesn't match the cookie ?> <h2><?php _e('Password Protected'); ?></h2> <p><?php _e('Enter the password to view comments.'); ?></p> <?php return; } } /* This variable is for alternating comment background */ $oddcomment = 'alt'; ?> <!-- You can start editing here. --> <div class="comments"> <?php if ($comments) : ?> <h1><?php comments_number('No Responses', 'One Response', '% Responses' );?> to “<?php the_title(); ?>”</h1> <ol class="commentlist"> <?php wp_list_comments('type=all&avatar_size=50'); ?> <?php else : // this is displayed if there are no comments so far ?> <?php if ( comments_open() ) : ?> <!-- If comments are open, but there are no comments. --> <?php else : // comments are closed ?> <!-- If comments are closed. --> <p class="nocomments">Comments are closed.</p> <?php endif; ?> <?php endif; ?> <?php if ( comments_open() ) : ?> <div class="commentform"> <div class="commentform_inner"> <h1>Place your comment</h1> <?php if ( get_option('comment_registration') && !is_user_logged_in() ) : ?> <div class="commentform_hint"> <h3>You must be <a>">logged in</a> to post a comment.</h3> </div> <?php else : ?> <div class="commentform_hint"> Please fill your data and comment below. </div> <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" class="commentform_form" method="post" id="commentform"> <div class="commentform_left"> <?php if ( is_user_logged_in() ) : ?> <p>Logged in as <a>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a>" title="Log out of this account">Log out »</a></p> <?php else : ?> <div class="commentform_title">Name</div> <input type="text" name="author" id="author" value="<?php echo esc_attr($comment_author); ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> /> <div class="commentform_title">Email</div> <input type="text" name="email" id="email" value="<?php echo esc_attr($comment_author_email); ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> /> <div class="commentform_title">Website</div> <input type="text" name="url" id="url" value="<?php echo esc_attr($comment_author_url); ?>" size="22" tabindex="3" /> <?php endif; ?> </div> <div class="commentform_right"> <div class="commentform_title">Your comment</div> <textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea> <input name="submit" type="submit" id="submit" tabindex="5" class="commentform_submit" value="Post" /> <?php comment_id_fields(); ?> <?php do_action('comment_form', $post->ID); ?> </div> </form> <?php endif; // If registration required and not logged in ?> </div> </div> <?php endif; // if you delete this the sky will fall on your head ?> </div>
1 reactie aan het bekijken (van in totaal 1)