Vous n'êtes pas identifié.
Annonce
Annonce 1 : Le Codex en français a besoin de vous pour avancer !
Annonce 2 : Avant de poster, n'oubliez pas de faire une petite Recherche et de lire les règles de ce forum.
Annonce 3 : Lisez notre blog, il regorge de bonnes informations.
#1 28-08-2008 17:28:28
dans les commentaires ?
Bonjour,
- Version de WordPress : 2.6
- Nom de l'hebergeur : free
- Adresse du site :http://noelnad.free.fr
Problème(s) rencontré(s) : voilà en fait l' image que j' ai inséré parle d' elle meme je voudrais supprimer tout se qui est dans les cadres rouge !
Hors ligne
#2 28-08-2008 17:59:41
Re: dans les commentaires ?
Il faut aller fouiner dans le ficheir single.php de ton thème et supprimer les éléments concernés.
Je te conseille de faire une sauvegarde du fichier en question avant toute intervention de ta part...
Que la Force soit avec vous...
-----------------------------------------------------------------------------
Si vous aimez la BD, vous aimerez www.kroniks.net
Hors ligne
#4 28-08-2008 19:05:41
Re: dans les commentaires ?
Envoie une copie de ton fichier, ce sera plus simple, même moi j'y arriverai peut-être...
Y a pas que le Code, y a aussi le code...
Ne vous fiez pas trop à mon nombre de messages, je ne suis pas bavard pour rien ! Mon véritable grade c'est "ignorant", option "demoinsenmoinsmaispartiderien"...
Sinon, attention : testis unus, testis nullus, et de minimis non curat praetor !
Hors ligne
#5 28-08-2008 19:34:08
- Buzz l'abeille
- Passionné WP
- Date d'inscription: 14-06-2008
- Messages: 108
- Site web
Re: dans les commentaires ?
Il faudra probablement toucher au fichier comments.php du thème si ce dernier y fait appel.
Ca buzz grave dans la création de site internet !
Vous avez faim ? Pourquoi pas se faire une bonne tartine de Nutella ?!
Hors ligne
#6 28-08-2008 19:48:28
- Rflx
- Expert WP
- Date d'inscription: 03-01-2008
- Messages: 212
Re: dans les commentaires ?
@tom2 : Poste ici entre les balises CODE ton fichier comments.php
!
Hors ligne
#7 28-08-2008 21:38:27
Re: dans les commentaires ?
ok, alors voila pour le comment.php :
Code:
- <?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
- ?>
- <p class="nocomments">
- <?php _e("This post is password protected. Enter the password to view comments."); ?>
- <p>
- <?php
- return;
- }
- }
- /* This variable is for alternating comment background */
- $oddcomment = 'alt';
- ?>
- <div id="commentblock">
- <?php if ( get_option('comment_registration') && !$user_ID ) : ?>
- <p>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php the_permalink(); ?>">logged in</a> to post a comment. </p>
- <?php else : ?>
- <br />
- <p class="small1"></p>
- <?php if ($comments) : ?>
- <p class="small">
- This entry was posted
- <?php /* This is commented, because it requires a little adjusting sometimes.
- You'll need to download this plugin, and follow the instructions:
- http://binarybonsai.com/archives/2004/08/17/time-since-plugin/ */
- /* $entry_datetime = abs(strtotime($post->post_date) - (60*120)); echo time_since($entry_datetime); echo ' ago'; */ ?>
- on <?php the_time('l, F jS, Y') ?> at <?php the_time() ?>
- and is filed under <?php the_category(', ') ?>.
- You can follow any responses to this entry through the <?php comments_rss_link('RSS 2.0'); ?> feed.
- <?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
- // Both Comments and Pings are open ?>
- You can <a href="#respond">leave a response</a>, or <a href="<?php trackback_url(display); ?>">trackback</a> from your own site.
- <?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) {
- // Only Pings are Open ?>
- Responses are currently closed, but you can <a href="<?php trackback_url(display); ?> ">trackback</a> from your own site.
- <?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
- // Comments are open, Pings are not ?>
- You can skip to the end and leave a response. Pinging is currently not allowed.
- <?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) {
- // Neither Comments, nor Pings are open ?>
- Both comments and pings are currently closed.
- <?php } edit_post_link('Edit this entry.','',''); ?>
- </p>
- <br /><h2><?php comments_number(__('No Comment'), __('1 Comment so far'), __('% Comments so far')); ?></h2><br /><br />
- <ol id="commentlist">
- <?php foreach ($comments as $comment) : ?>
- <li class="<?php echo $oddcomment; ?>" id="comment-<?php comment_ID() ?>">
- <?php comment_author_link()?> on
- <?php comment_date('F j, Y') ?>
- <?php comment_time()?>
- <?php edit_comment_link(__("Edit This"), ''); ?>
- <?php if ($comment->comment_approved == '0') : ?>
- <em>Your comment is awaiting moderation.</em>
- <?php endif; ?>
- <?php
- if(the_author('', false) == get_comment_author())
- echo "<div class='commenttext-admin'>";
- else
- echo "<div class='commenttext'>";
- comment_text();
- echo "</div>";
- ?>
- </li>
- <?php /* Changes every other comment to a different class */
- if ('alt' == $oddcomment){
- $oddcomment = 'standard';
- }
- else {
- $oddcomment = 'alt';
- }
- ?>
- <?php endforeach; /* end for each comment */ ?>
- </ol>
- <?php else : // this is displayed if there are no comments so far ?>
- <?php if ('open' == $post-> comment_status) : ?>
- <!-- 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 ('open' == $post-> comment_status) : ?>
- <?php endif; // If registration required and not logged in ?>
- <?php endif; // if you delete this the sky will fall on your head ?>
- <div id="commentsform">
- <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
- <?php if ( $user_ID ) : ?>
- <p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account') ?>"> Logout » </a> </p>
- <?php else : ?>
- <p><?php _e('Name ');?><?php if ($req) _e('(required)'); ?><br />
- <input type="text" name="author" id="s1" value="<?php echo $comment_author; ?>" size="30" tabindex="1" />
- </p>
- <p><?php _e('Email ');?><?php if ($req) _e('(required)'); ?><br />
- <input type="text" name="email" id="s2" value="<?php echo $comment_author_email; ?>" size="30" tabindex="2" />
- </p>
- <p><?php _e('Website');?><br />
- <input type="text" name="url" id="s3" value="<?php echo $comment_author_url; ?>" size="30" tabindex="3" />
- </p>
- <?php endif; ?>
- <p>XHTML:</strong> You can use these tags: <?php echo allowed_tags(); ?></p>
- <p><?php _e('Feel free to leave a comment');?><br />
- <textarea name="comment" id="s4" cols="35" rows="13" tabindex="4"></textarea>
- </p>
- <p>
- <input name="submit" type="submit" id="hbutt" tabindex="5" value="Submit comment" />
- <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
- </p>
- <?php do_action('comment_form', $post->ID); ?>
- </form>
- </div>
- </div>
et voilà pour le single.php :
Code:
- <?php get_header(); ?>
- <?php include(TEMPLATEPATH."/sidebar.php");?>
- <div id="rightCol" class="col0">
- <p>
- <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
- <div class="contentdate">
- <table cellspacing="0" cellpadding="0"><tr><td>
- <div class="date">
- <?php the_time('j'); ?><br />
- <span class="month"><?php the_time('M'); ?></span><br />
- </div>
- </td>
- <td><h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2><p>Category: <?php the_category(', ') ?> | <?php edit_post_link('Edit',''); ?> <?php comments_popup_link('Leave a Comment', '1 Comment', '% Comments'); ?></p></td></tr></table>
- </div>
- <div class="entry">
- <?php the_content(__('Read more'));?>
- </div>
- <!--
- <?php trackback_rdf(); ?>
- -->
- <?php endwhile; else: ?>
- <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
- <?php endif; ?><br />
- <div class="entry"><?php comments_template(); // Get wp-comments.php template ?></div>
- <div class="navigation">
- <div align="right"><?php $wp_query->is_single = true; previous_post ('« %', '', 'yes'); $wp_query->is_single = false; ?>
- </div>
- </p>
- </div>
- <?php get_footer(); ?>
Merci c' est cool !
Hors ligne
#8 28-08-2008 22:46:08
- Rflx
- Expert WP
- Date d'inscription: 03-01-2008
- Messages: 212
Re: dans les commentaires ?
Voila les fichiers (sauvegarde bien ceux avant, au cas où j'ai fait une boulette).
J'ai aussi traduis les textes anglais vers le français,
!
Par contre le deuxième cadre rouge, je peux pas le supprimer, il faut pas, c'est des informations à propos du commentaire mais maintenant c'est en français :p !
Code:
- <?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
- ?>
- <p class="nocomments">
- <?php _e("This post is password protected. Enter the password to view comments."); ?>
- <p>
- <?php
- return;
- }
- }
- /* This variable is for alternating comment background */
- $oddcomment = 'alt';
- ?>
- <div id="commentblock">
- <?php if ( get_option('comment_registration') && !$user_ID ) : ?>
- <p>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php the_permalink(); ?>">logged in</a> to post a comment. </p>
- <?php else : ?>
- <br />
- <p class="small1"></p>
- <?php if ($comments) : ?>
- <br /><h2><?php comments_number(__('Pas de commentaire'), __('1 commentaire'), __('% commentaires à ce jour')); ?></h2><br /><br />
- <ol id="commentlist">
- <?php foreach ($comments as $comment) : ?>
- <li class="<?php echo $oddcomment; ?>" id="comment-<?php comment_ID() ?>">
- <?php comment_author_link()?> le
- <?php comment_date('F j, Y') ?>
- <?php comment_time()?>
- <?php edit_comment_link(__("Editer"), ''); ?>
- <?php if ($comment->comment_approved == '0') : ?>
- <em>Your comment is awaiting moderation.</em>
- <?php endif; ?>
- <?php
- if(the_author('', false) == get_comment_author())
- echo "<div class='commenttext-admin'>";
- else
- echo "<div class='commenttext'>";
- comment_text();
- echo "</div>";
- ?>
- </li>
- <?php /* Changes every other comment to a different class */
- if ('alt' == $oddcomment){
- $oddcomment = 'standard';
- }
- else {
- $oddcomment = 'alt';
- }
- ?>
- <?php endforeach; /* end for each comment */ ?>
- </ol>
- <?php else : // this is displayed if there are no comments so far ?>
- <?php if ('open' == $post-> comment_status) : ?>
- <!-- 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 ('open' == $post-> comment_status) : ?>
- <?php endif; // If registration required and not logged in ?>
- <?php endif; // if you delete this the sky will fall on your head ?>
- <div id="commentsform">
- <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
- <?php if ( $user_ID ) : ?>
- <p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account') ?>"> Logout » </a> </p>
- <?php else : ?>
- <p><?php _e('Name ');?><?php if ($req) _e('(required)'); ?><br />
- <input type="text" name="author" id="s1" value="<?php echo $comment_author; ?>" size="30" tabindex="1" />
- </p>
- <p><?php _e('Email ');?><?php if ($req) _e('(required)'); ?><br />
- <input type="text" name="email" id="s2" value="<?php echo $comment_author_email; ?>" size="30" tabindex="2" />
- </p>
- <p><?php _e('Website');?><br />
- <input type="text" name="url" id="s3" value="<?php echo $comment_author_url; ?>" size="30" tabindex="3" />
- </p>
- <?php endif; ?>
- <p><?php _e('Si vous voulez poster un commentaire...');?><br />
- <textarea name="comment" id="s4" cols="35" rows="13" tabindex="4"></textarea>
- </p>
- <p>
- <input name="submit" type="submit" id="hbutt" tabindex="5" value="Submit comment" />
- <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
- </p>
- <?php do_action('comment_form', $post->ID); ?>
- </form>
- </div>
- </div>
Et le deuxième :
Code:
- <?php get_header(); ?>
- <?php include(TEMPLATEPATH."/sidebar.php");?>
- <div id="rightCol" class="col0">
- <p>
- <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
- <div class="contentdate">
- <table cellspacing="0" cellpadding="0"><tr><td>
- <div class="date">
- <?php the_time('j'); ?><br />
- <span class="month"><?php the_time('M'); ?></span><br />
- </div>
- </td>
- <td><h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2><p>Catégorie <?php the_category(', ') ?> | <?php edit_post_link('Edit',''); ?> <?php comments_popup_link('Postez un commentaire', '1 commentaire', '% commentaires'); ?></p></td></tr></table>
- </div>
- <div class="entry">
- <?php the_content(__('Lire la suite !'));?>
- </div>
- <!--
- <?php trackback_rdf(); ?>
- -->
- <?php endwhile; else: ?>
- <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
- <?php endif; ?><br />
- <div class="entry"><?php comments_template(); // Get wp-comments.php template ?></div>
- <div class="navigation">
- <div align="right"><?php $wp_query->is_single = true; previous_post ('« %', '', 'yes'); $wp_query->is_single = false; ?>
- </div>
- </p>
- </div>
- <?php get_footer(); ?>
Souvent j'oublie des trucs, donc n'hésite pas si t'as un problème
!
Hors ligne
