Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/10/2009, 15:24
CrowDER
 
Fecha de Ingreso: junio-2003
Mensajes: 2
Antigüedad: 20 años, 10 meses
Puntos: 0
Respuesta: Editar "Fecha y Hora de Creación" en articulos

Hola,

Puedes entrar a components\com_content\views\article\tmpl
editar el default.php y alli buscar este codigo

<?php if ($this->params->get('show_create_date')) : ?>
<tr>
<td valign="top" class="createdate">
<?php echo JHTML::_('date', $this->article->created, JText::_('DATE_FORMAT_LC')) ?>
</td>
</tr>
<?php endif; ?>

Una vez alli modificas el DATE_FORMAT_LC2 por DATE_FORMAT_LC y listo te muestra solo la fecha de creación.

Espero te sirva.