28172 sujets

CSS et mise en forme, CSS3

Bonjour,

Je ne sais pas si je suis au bon endroit mais je tente quand même.
Mon problème vient d'un blog Wordpress dont je viens de changer de thème. Depuis, j'ai tous mes commentaires qui se sont mélangés les pinceaux ! Aussi, si quelqu'un poste un commentaire dans un article, il pourra se trouver sur un autre !

Si je remets l'ancien thème, tout redevient normal (sauf les commentaires qui auront été postés ailleurs avec le nouveau thème, ce qui est normal).

Je pense que ça vient du comments.php, non ?

Le voici (au cas où) :

<?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>This post is password protected. Enter the password to view comments.</h2>

				<?php
				return;
            }
        }

		/* This variable is for alternating comment background */
		$ows = '';
?>
<?php if ($comments) : ?>
	<h2 style="font-weight:normal; padding-bottom:20px; ">This post has <?php comments_number('0 responses', '1 response', '% responses' );?> so far</h2>
	<?php foreach ($comments as $comment) : ?>
	<?php 
		$comment_type = get_comment_type(); 
		
		if ($comment_type == 'comment') {
	?>
	<a name="comment-<?php comment_id(); ?>"></a>
	<div class="comment-wrap clearfix">
		<div class="left">
			<div class="ava"><?php echo get_avatar( $comment, 48 ); ?></div>
			<div class="author"><a href="<?php if(get_comment_author_url() != 'http://') { echo get_comment_author_url(); } else { bloginfo("url"); } ?>"><?php comment_author(); ?></a></div>
		</div>
		<div class="right">
			<div class="comment-text"><?php comment_text(); ?></div>
			<div class="date"><?php printf(__('%1$s at %2$s',''), get_comment_date(), get_comment_time()); ?></div>
		</div>
	</div>
	<?php 
		}
		else {
		// pingbacks / trackbacks
	?>
		<div class="comment-wrap">
			<div class="comment-text-full"><?php comment_text(); ?></div>
		</div>
	<?php } ?>
	<?php endforeach; /* end for each comment */ ?>
<?php else: ?>
	<?php if ('open' == $post->comment_status) : ?> 
	 <?php else : // comments are closed ?>
		<!-- If comments are closed. -->
		<h2>Comments are closed.</h2>
	<?php endif; ?>
<?php endif; ?>
<?php include ("comment-form.php"); ?>


Quelqu'un aurait une idée ?

Je vous laisse l'adresse de mon blog (qui est actuellement avec le nouveau thème) : http://www.autourduweb.fr/

Merci Smiley cligne
Modifié par CedricADW (05 Nov 2009 - 15:52)