Piero V.

Vacanza

Finalmente è arrivato anche per me il meritato periodo di vacanza.

Domani parto per andare un po’ di giorni a Firenze.

Fino al mio ritorno imposterò i commenti affinché debbano essere approvati prima di essere pubblici.

Ciao a tutti, ci vediamo!

P. S.: L’albergo ha la wireless gratuita, magari un giro sul sito lo faccio lo stesso!

Plugin Comment Center (v1.1.1) [Flatpress]

English

I’ve updated again the Comment Center.

There was an underscore instead of a dash that hid the IP Address of the people that commented.

I’ve also made another change: when comments are locked they are just locked and they aren’t sent to Akismet, as before this updaed happened.

License: GNU GPLv2

Download: Comment Center v1.1.1

Italiano

Ho aggiornato ancora Comment Center.

C’era un underscore al posto di un dash che nascondeva l’indirizzo IP della gente che commentava.

Ho anche fatto un altro cambiamento: quando i commenti sono bloccati, sono proprio bloccati, invece prima erano anche mandati ad Akismet.

Licenza: GNU GPLv2

Download: Comment Center v1.1.1

Plugin Comment Center (v1.1) [Flatpress]

English

I’ve released a new version of Comment Center.

Changelog:

  • Fixed an Akismet bug
  • Fixed compatibility with Last Comments
  • Added the possibility to notify new comments to aprrove via email
  • Added a graphical chic on the configure page

License: GNU GPLv2

Download: Comment Center v1.1

Italiano

Ho rilasciato una nuova versione di Comment Center.

Changelog:

  • Risolto un bug con Akismet
  • Sistemata la compatibilità con Last Comments
  • Aggiunta la possibilità di essere informati via email quando c’è un nuovo commento da approvare
  • Aggiunta una sciccheria grafica nella pagina della configurazione

Licenza: GNU GPLv2

Download: Comment Center v1.1

Plugin Comment Center (v1.0) [Flatpress]

English

I’ve written this plugin that is a “Comment Center”: it allows to manage the comments of you blog using “policies”.

It also provides a better support to Akismet.

It took me days because I hate writing Administration Panels.

I think it’s rather straightforward, but if you have troubles, contct me.

The panel is located on Entry -> Comment Center.

License: GNU GPLv2

Download: Comment Center v1.0

Italiano

Ho scritto questo plugin che è un “Centro dei Commenti”: permette di gestire i commenti di un blog usando delle “regole”.

Fornisce un supporto ad Akismet migliore di quello del plugin di default. Devo dire che non mi piace dover inviare i commenti al loro server ogni volta, però giusto poco dopo che ho attivato il plugin hanno cercato di spammarmi ed è tutta la sera che vanno avanti.

Ci ho messo giorni a scriverlo perché odio fare plugin con i pannelli di amministrazione.

Penso sia abbastanza intuitivo, tuttavia se avete problemi contattatemi.

Il pannello è situato in Post -> Comment Center.

Licenza: GNU GPLv2

Download: Comment Center v1.0

Make comments always visible on Flatpress

Italiano

Può capitare di far sempre visibili i commenti su Flatpress.

Ecco il plugin che fa al caso vostro:

<?php
/*
Plugin Name: Comments Always Visible
Version: 1.0
Plugin URI: http://www.vdfn.altervista.org/2010/09/29/make-comments-always-visible-on-flatpress/
Description: Make comments always visible
Author: Piero VDFN
Author URI: http://www.vdfn.altervista.org/
*/
function plugin_commentsvisible() {
	global $fp_params;
	if(!empty($fp_params['entry']))
		$fp_params['comments']=true;
}

add_filter('init', 'plugin_commentsvisible', 20);

Salvatelo per esempio in fp-plugins/commentsvisible/plugin.commentsvisible.php.

Licenza: Pubblico Dominio

English

If you use Flatpress, maybe you want to show comments always.

This is the code to do that (see on the top of entry).

Save it for example in fp-plugins/commentsvisible/plugin.commentsvisible.php.

License: Public Domain