He estado viendo pero no me sale .. alguien que me eche una mano .. si??
Un Saludo y el o-line lo pueden ver [URL="http://www.fuerzatecnologica.com"]aqui[/URL] .. adjunto el comment.php
Código PHP:
<?php // No eliminar estas lineas
if ('comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
die ('Por favor, no cargue esta página directamente. Gracias!');
if (!empty($post->post_password)) { // Si existe contraseña
if ($_COOKIE['wp-postpass_'.$cookiehash] != $post->post_password) { // Y no corresponde con la cookie
?>
<p class="nocomments"><?php _e("Este post esta protegido con contraseña. Ingrese la contraseña para ver los comentarios"); ?><p>
<?php
return;
}
}
/* Alternacion de variables con los comentarios del tema */
$oddcomment = "graybox";
?>
<!-- Inicio del codigo de los comentarios (cuerpo) -->
<?php if ($comments) : ?>
<a name="comments"></a>
<h2><?php comments_number('Sin comentarios','Un comentario','% commentarios' );?></h2>
<div id="comments">
<?php foreach ($comments as $comment) : ?>
<div class="comment">
<div class="commenter">
<a name="comment-<?php comment_ID() ?>"></a>
<b><?php comment_author_link() ?></b>
<a href="#comment-<?php comment_ID() ?>" title=""> comento el dia <?php comment_date('d/m/y') ?> a las <?php comment_time() ?></a> <?php edit_comment_link('[Editar]','',''); ?>
</div>
<div class="commentbox">
<div class="commenttop">
<?php comment_text() ?>
</div>
<div class="commentbottom"></div></div>
</div>
<div class="both"></div>
<?php endforeach; /* Final de cada comentario */ ?>
</div>
<?php else : // Esta informacion se muestra si no hay comentarios ?>
<?php if ('open' == $post-> comment_status) : ?>
<!-- Los comentarios estan abiertos, pero no hay ninguno-->
<?php else : // los comentarios estan cerrados ?>
<!-- Si los comentarios estan cerrados -->
<p class="nocomments">Los comentarios estan cerrados.</p>
<?php endif; ?>
<?php endif; ?>
<?php if ('open' == $post-> comment_status) : ?>
<a name="respond"></a><h2>Responder</h2>
<form action="<?php echo get_settings('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
<p>
<input type="text" name="author" id="author" class="styled" value="<?php echo $comment_author; ?>" size="22" tabindex="1" style="width:50%;" />
<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
<p><small><strong>Si ya esta logeado no es necesario completar lo campos de nombre y e-mail. Solo escriba su opinion y listo.</strong></small></p>
<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars($_SERVER["REQUEST_URI"]); ?>" /><label for="author">Tu nombre</label>
</p>
<p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" style="width:50%;" /><label for="email"> Tu Email</label>
</p>
<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" style="width:50%;" /><label for="url"> Tu pagina web</label>
</p>
<p><textarea name="comment" id="comment" rows="10" tabindex="4" style="width:90%;" cols="15"></textarea></p>
<?php if ('none' != get_settings("comment_moderation")) { ?>
<p><small><strong>Gracias por dejar tu opinion -</strong> Por favor procura que tus comentarios esten dentro tema, que no sean promocionales (spam), ilegales u ofensivos, de otro modo, seran borrados.</small></p>
<?php } ?>
<p><input name="submit" type="submit" id="submit" tabindex="5" value="Enviar comentario" /></p>
</form>
<table border="0" cellpadding="5" align="left"><tr><td><div class="creditslnk">
Fuerza Theme fue creado por <a href='http://www.fuerzatecnologica.com'>Fuerza Tecnologica</a> inspirado en los trabajos de <a href='http://www.freethemes4all.com'>Freethemes4all.com</a>
</div></td></tr></table>
<?php // Si elimina esta linea causara muchos errores
endif; ?>