Foros del Web » Creando para Internet » Sistemas de gestión de contenidos » WordPress »

cambiar "Deja un comentario" en plantilla wordpress

Estas en el tema de cambiar "Deja un comentario" en plantilla wordpress en el foro de WordPress en Foros del Web. Estimados buenas tardes En el WP en español es por todos conocida la plantilla "deafult" de "kubrick" que viene por defecto en todo word press, ...
  #1 (permalink)  
Antiguo 26/12/2008, 21:03
 
Fecha de Ingreso: febrero-2006
Mensajes: 104
Antigüedad: 18 años, 2 meses
Puntos: 0
cambiar "Deja un comentario" en plantilla wordpress

Estimados buenas tardes

En el WP en español es por todos conocida la plantilla "deafult" de "kubrick" que viene por defecto en todo word press, aquella con cabecera azul de dos columnas a la izquierdea los post y a la derecha los enlaces

Bueno en general sea esa o no deseo saber si existe por favor alguna manera de cambiar el texto "Deja un comentario" por otra cosa, llamese "escribe tu consulta", "anota tu sugerencia" etc...algo adhoc para lo que uno desea...o cambiar "Comentario" de la primera página por otro texto...

La verdad en la hoja de estilos no hay nada y en los files que comprenden el wp-content y themes no he visto nada tampoco tampoco, es decir nada que pueda hacer que los modifique, todo está en ingles y no hay un php de lenguaje o nada por el estilo.

Gracias de antemano por sus respuestas
Atentamente

Qualito
  #2 (permalink)  
Antiguo 27/12/2008, 11:53
Avatar de roc2107
ɹopɐɹǝpoɯ
 
Fecha de Ingreso: febrero-2003
Ubicación: León Guanajuato
Mensajes: 4.834
Antigüedad: 21 años, 2 meses
Puntos: 109
Respuesta: cambiar "Deja un comentario" en plantilla wordpress

Busca en el archivo llamado comments.php lo abres y buscas "Deja un comentario" lo puedes borrar y escribir lo que tu quieras.

Saludos.
__________________
Blog de Diseño Gráfico roc21.com ||

El secreto de la creatividad es saber esconder tus fuentes.
  #3 (permalink)  
Antiguo 27/12/2008, 16:02
 
Fecha de Ingreso: febrero-2006
Mensajes: 104
Antigüedad: 18 años, 2 meses
Puntos: 0
Respuesta: cambiar "Deja un comentario" en plantilla wordpress

Hola

Como dije en el rpimer post he revisado todos los php y no encuentro donde cambiar.
Me mencionas que cambie el comments.php? te lo posteo aquí y me dices donde debo cambiar por favor pues no veo donde.

Otra cosa curiosa todos los files php estan en inglés y la plantilla en el browser en español

Al parecer la respuesta no es tan fácil.


Código php:
Ver original
  1. <?php // Do not delete these lines
  2.     if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
  3.         die ('Please do not load this page directly. Thanks!');
  4.  
  5.     if (!empty($post->post_password)) { // if there's a password
  6.         if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) {  // and it doesn't match the cookie
  7.             ?>
  8.  
  9.             <p class="nocomments">This post is password protected. Enter the password to view comments.</p>
  10.  
  11.             <?php
  12.             return;
  13.         }
  14.     }
  15.  
  16.     /* This variable is for alternating comment background */
  17.     $oddcomment = 'class="alt" ';
  18. ?>
  19.  
  20. <!-- You can start editing here. -->
  21.  
  22. <?php if ($comments) : ?>
  23.     <h3 id="comments"><?php comments_number('No Responses', 'One Response', '% Responses' );?> to “<?php the_title(); ?>”</h3>
  24.  
  25.     <ol class="commentlist">
  26.  
  27.     <?php foreach ($comments as $comment) : ?>
  28.  
  29.         <li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>">
  30.             <?php echo get_avatar( $comment, 32 ); ?>
  31.             <cite><?php comment_author_link() ?></cite> Says:
  32.             <?php if ($comment->comment_approved == '0') : ?>
  33.             <em>Your comment is awaiting moderation.</em>
  34.             <?php endif; ?>
  35.             <br />
  36.  
  37.             <small class="commentmetadata"><a href="#comment-<?php comment_ID() ?>" title=""><?php comment_date('F jS, Y') ?> at <?php comment_time() ?></a> <?php edit_comment_link('edit','&nbsp;&nbsp;',''); ?></small>
  38.  
  39.             <?php comment_text() ?>
  40.  
  41.         </li>
  42.  
  43.     <?php
  44.         /* Changes every other comment to a different class */
  45.         $oddcomment = ( empty( $oddcomment ) ) ? 'class="alt" ' : '';
  46.     ?>
  47.  
  48.     <?php endforeach; /* end for each comment */ ?>
  49.  
  50.     </ol>
  51.  
  52.  <?php else : // this is displayed if there are no comments so far ?>
  53.  
  54.     <?php if ('open' == $post->comment_status) : ?>
  55.         <!-- If comments are open, but there are no comments. -->
  56.  
  57.      <?php else : // comments are closed ?>
  58.         <!-- If comments are closed. -->
  59.         <p class="nocomments">Comments are closed.</p>
  60.  
  61.     <?php endif; ?>
  62. <?php endif; ?>
  63.  
  64.  
  65. <?php if ('open' == $post->comment_status) : ?>
  66.  
  67. <h3 id="respond">Leave a Reply</h3>
  68.  
  69. <?php if ( get_option('comment_registration') && !$user_ID ) : ?>
  70. <p>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>">logged in</a> to post a comment.</p>
  71. <?php else : ?>
  72.  
  73. <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
  74.  
  75. <?php if ( $user_ID ) : ?>
  76.  
  77. <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="Log out of this account">Log out &raquo;</a></p>
  78.  
  79. <?php else : ?>
  80.  
  81. <p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
  82. <label for="author"><small>Name <?php if ($req) echo "(required)"; ?></small></label></p>
  83.  
  84. <p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
  85. <label for="email"><small>Mail (will not be published) <?php if ($req) echo "(required)"; ?></small></label></p>
  86.  
  87. <p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
  88. <label for="url"><small>Website</small></label></p>
  89.  
  90. <?php endif; ?>
  91.  
  92. <!--<p><small><strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></small></p>-->
  93.  
  94. <p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>
  95.  
  96. <p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" />
  97. <input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
  98. </p>
  99. <?php do_action('comment_form', $post->ID); ?>
  100.  
  101. </form>
  102.  
  103. <?php endif; // If registration required and not logged in ?>
  104.  
  105. <?php endif; // if you delete this the sky will fall on your head ?>



...Hay otro comments popup tambien en inglés...

Bueno espero me puedan ayudar igualmente

Muachas Gracias
Att

Qualito

Última edición por AlvaroG; 27/12/2008 a las 16:09 Razón: resaltado de sintaxis.
  #4 (permalink)  
Antiguo 27/12/2008, 16:51
Avatar de David_dfd  
Fecha de Ingreso: febrero-2005
Ubicación: Tenerife
Mensajes: 311
Antigüedad: 19 años, 2 meses
Puntos: 2
Respuesta: cambiar "Deja un comentario" en plantilla wordpress

En la plantilla DEFAULT en el index.php

Código PHP:
<?php comments_popup_link(__('No Comments »''kubrick'), __('1 Comment »''kubrick'), __('% Comments »''kubrick'), ''__('Comments Closed''kubrick') ); ?>
Lo tienes que quitar de la INDEX y tambien de la correspondiente a la categorias y archivos que suele ser archives.php.

En caso de que no sea esto, pon el nombre de tu plantilla, o el codigo del index.php y te lo indico mejor.
  #5 (permalink)  
Antiguo 28/12/2008, 16:29
 
Fecha de Ingreso: febrero-2006
Mensajes: 104
Antigüedad: 18 años, 2 meses
Puntos: 0
Respuesta: cambiar "Deja un comentario" en plantilla wordpress

Hola David

La plantilla se llama DEFAULT y es conocida por todos pues viene en todo wordpress

En base a tu post anterior te coloco el index de esa plantilla que solicitaste

Pregunta adicional sobre la hoja de estilos de esa plantilla...como se llama el estilo o en que linea (dreamweaver) lo ubico que hace referencia al color azul de texto del menu derecho? no lo veo aun y deseo cambiar de color de texto.

Muchas Gracias
att
Qualito



<?php get_header(); ?>

<div id="content" class="narrowcolumn">

<?php if (have_posts()) : ?>

<?php while (have_posts()) : the_post(); ?>

<div class="post" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>

<div class="entry">
<?php the_content('Read the rest of this entry &raquo;'); ?>
</div>

<p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
</div>

<?php endwhile; ?>

<div class="navigation">
<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
</div>

<?php else : ?>

<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>

<?php endif; ?>

</div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>
  #6 (permalink)  
Antiguo 28/12/2008, 19:11
Avatar de David_dfd  
Fecha de Ingreso: febrero-2005
Ubicación: Tenerife
Mensajes: 311
Antigüedad: 19 años, 2 meses
Puntos: 2
Respuesta: cambiar "Deja un comentario" en plantilla wordpress

Vale perdona fue un fallo, no te entendi bien cual querias quitar.

El archivo a editar es comments.php, tienes señalado en rojo lo que tienes que editar.

Código:
<?php // Do not delete these lines
	if (isset($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
		die ('Please do not load this page directly. Thanks!');
	
	if ( post_password_required() ) { ?>
		<p class="nocomments"><?php _e('This post is password protected. Enter the password to view comments.', 'kubrick'); ?></p> 
	<?php
		return;
	}
?>

<!-- You can start editing here. -->

<?php if ( have_comments() ) : ?>
	<h3 id="comments"><?php comments_number(__('No Responses', 'kubrick'), __('One Response', 'kubrick'), __('% Responses', 'kubrick'));?> <?php printf(__('to “%s”', 'kubrick'), the_title('', '', false)); ?></h3>

	<div class="navigation">
		<div class="alignleft"><?php previous_comments_link() ?></div>
		<div class="alignright"><?php next_comments_link() ?></div>
	</div>

	<ol class="commentlist">
	<?php wp_list_comments();?>
	</ol>

	<div class="navigation">
		<div class="alignleft"><?php previous_comments_link() ?></div>
		<div class="alignright"><?php next_comments_link() ?></div>
	</div>

 <?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"><?php _e('Comments are closed.', 'kubrick'); ?></p>

	<?php endif; ?>
<?php endif; ?>


<?php if ('open' == $post->comment_status) : ?>

<div id="respond">

<h3><?php comment_form_title( __('Leave a Reply', 'kubrick'), __('Leave a Reply for %s' , 'kubrick') ); ?></h3>

<div id="cancel-comment-reply"> 
	<small><?php cancel_comment_reply_link() ?></small>
</div> 

<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
<p><?php printf(__('You must be <a href="%s">logged in</a> to post a comment.', 'kubrick'), get_option('siteurl') . '/wp-login.php?redirect_to=' . urlencode(get_permalink())); ?></p>
<?php else : ?>

<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">

<?php if ( $user_ID ) : ?>

<p><?php printf(__('Logged in as <a href="%1$s">%2$s</a>.', 'kubrick'), get_option('siteurl') . '/wp-admin/profile.php', $user_identity); ?> <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="<?php _e('Log out of this account', 'kubrick'); ?>"><?php _e('Log out &raquo;', 'kubrick'); ?></a></p>

<?php else : ?>

<p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
<label for="author"><small><?php _e('Name', 'kubrick'); ?> <?php if ($req) _e("(required)", "kubrick"); ?></small></label></p>

<p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
<label for="email"><small><?php _e('Mail (will not be published)', 'kubrick'); ?> <?php if ($req) _e("(required)", "kubrick"); ?></small></label></p>

<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
<label for="url"><small><?php _e('Website', 'kubrick'); ?></small></label></p>

<?php endif; ?>

<!--<p><small><?php printf(__('<strong>XHTML:</strong> You can use these tags: <code>%s</code>', 'kubrick'), allowed_tags()); ?></small></p>-->

<p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>

<p><input name="submit" type="submit" id="submit" tabindex="5" value="<?php _e('Submit Comment', 'kubrick'); ?>" />
<?php comment_id_fields(); ?> 
</p>
<?php do_action('comment_form', $post->ID); ?>

</form>

<?php endif; // If registration required and not logged in ?>
</div>

<?php endif; // if you delete this the sky will fall on your head ?>

Puedes colocar por ejemplo:

Código:
<h3>Lo que quieras poner</h3>
Espero que ahora si te valga.
  #7 (permalink)  
Antiguo 28/12/2008, 19:18
Avatar de David_dfd  
Fecha de Ingreso: febrero-2005
Ubicación: Tenerife
Mensajes: 311
Antigüedad: 19 años, 2 meses
Puntos: 2
Respuesta: cambiar "Deja un comentario" en plantilla wordpress

Cita:
Iniciado por Qualito Ver Mensaje
Hola David

Pregunta adicional sobre la hoja de estilos de esa plantilla...como se llama el estilo o en que linea (dreamweaver) lo ubico que hace referencia al color azul de texto del menu derecho? no lo veo aun y deseo cambiar de color de texto.
CREO que es esta linea, no estoy ahora seguro al 100%.

Código:
a, h2 a:hover, h3 a:hover {
Si no es, dime algo.

Saludos
  #8 (permalink)  
Antiguo 29/12/2008, 13:10
 
Fecha de Ingreso: febrero-2006
Mensajes: 104
Antigüedad: 18 años, 2 meses
Puntos: 0
Respuesta: cambiar "Deja un comentario" en plantilla wordpress

Hola David

Mira al final consegui los files del theme/default en español, todos ellos y pude cambiar comments.php justo en la sección que decia "Deja un comentario" por otra cosa, asimismo el encabezado de "comentario esperando ser moderado"...lo que aun no encuentro es...

1 Comment o 2 Comments o cualquier numero segun sean los comentarios dejados.
Es decir el enlace "Comments" del front page que al clickearlo veo los comentarios de la gente. Ese texto en que file esta?

Respecto al color azul del texto del menu derecho ya encontré el estilo de la CSS, gracias

Att
Qualito
  #9 (permalink)  
Antiguo 30/12/2008, 12:21
Avatar de David_dfd  
Fecha de Ingreso: febrero-2005
Ubicación: Tenerife
Mensajes: 311
Antigüedad: 19 años, 2 meses
Puntos: 2
Respuesta: cambiar "Deja un comentario" en plantilla wordpress

Eso lo tienes en el index

Código:
<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>

Ejemplo:
Código:
<?php comments_popup_link('Se el primero en publicar un comentario »', '1 Comentario »', '% Comentarios »'); ?></p>
Saludos,
  #10 (permalink)  
Antiguo 31/12/2008, 16:48
 
Fecha de Ingreso: febrero-2006
Mensajes: 104
Antigüedad: 18 años, 2 meses
Puntos: 0
Respuesta: cambiar "Deja un comentario" en plantilla wordpress

Asi es David, justo estos días lo habia encontrado, gracias por el post

..última pregunta respecto a esta plantilla DEFAULT de kubrick que traen todos los wordpress.

1. Estando en capas <div> y no en tablas esta plnatilla (index.php) , como paso el menu del lado derecho (sidebar.php) al lado izquierdo? por favor no considerar la repuesta "pasalo a tablas" pues ya lo intente y se puede pasar el index a tablas pero los enlaces internos al clickearlos desde el index ,la pagina que aparece es la <div> correspondiente, osea sin tablas...

Gracias por la ayuda

Att
Qualito
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 03:56.