Sí, había entendido mal. Tuve que bajarlo para saber cómo era la cosa
.
Rcarcamonster, abre el archivo
components/com_easycomments/easycomments.php. Busca aprox. en la línea 159:
Código PHP:
if (in_array ($row->sectionid, $seclistarray)) {
$row->text = str_replace( "{easycomments}", "", $row->text );
if ($total==1) {
$row->text = $row->text."<a class=\"easycomments_comment\" href='" . sefRelToAbs( 'index.php?option=com_content&task=view&id='. $row->id . $Itemid ) . "#easyentry'> "._EASYCOMMENTS_ONECOMMENT."</a>"; }
elseif ($total>1) {
$row->text = $row->text."<a class=\"easycomments_comment\" href='" . sefRelToAbs( 'index.php?option=com_content&task=view&id='. $row->id . $Itemid ) . "#easyentry'> $total "._EASYCOMMENTS_COMMENTS."</a>"; }
else {
$row->text = $row->text."<a class=\"easycomments_comment\" href='" . sefRelToAbs( 'index.php?option=com_content&task=view&id='. $row->id . $Itemid ) . "#easyentry'> "._EASYCOMMENTS_NOCOMMENTS."</a>";
}
}
Reemplaza por:
Código PHP:
/* if (in_array ($row->sectionid, $seclistarray)) {
$row->text = str_replace( "{easycomments}", "", $row->text );
if ($total==1) {
$row->text = $row->text."<a class=\"easycomments_comment\" href='" . sefRelToAbs( 'index.php?option=com_content&task=view&id='. $row->id . $Itemid ) . "#easyentry'> "._EASYCOMMENTS_ONECOMMENT."</a>"; }
elseif ($total>1) {
$row->text = $row->text."<a class=\"easycomments_comment\" href='" . sefRelToAbs( 'index.php?option=com_content&task=view&id='. $row->id . $Itemid ) . "#easyentry'> $total "._EASYCOMMENTS_COMMENTS."</a>"; }
else {
$row->text = $row->text."<a class=\"easycomments_comment\" href='" . sefRelToAbs( 'index.php?option=com_content&task=view&id='. $row->id . $Itemid ) . "#easyentry'> "._EASYCOMMENTS_NOCOMMENTS."</a>";
}
} */
Lo que se hizo fue anular el bloque con líneas de comentarios. Puedes eliminarlo también pero es preferible dejar el trozo. Nadie sabe si luego cambias de idea.
Asegúrate de copiar/pegar de forma íntegra. Si falta una llave, coma, etc. el script te dará error.