personalizzare wp-comment

Fabio90

Utente Attivo
29 Feb 2012
507
0
16
Ciao a tutti,
Sto cercando di personalizzare i campi obbligatori (nome, cognome, mail,città) da inserire prima di poter lasciare un commento e quindi memorizzarli anche nel database
comment.php
PHP:
<div id="comments">
	<?php if ( post_password_required() ) : ?>
				<p class="nopassword"><?php _e( 'Questo articolo è protetto da password. Inserisci la password per visualizzare i commenti.', 'yiw' ); ?></p>
			</div><!-- #comments -->
	<?php
		return;
	endif;
?>

<?php if ( have_comments() ) : ?>
			<h3 id="comments-title">
                <?php comments_number(__('nessun commento', 'yiw'), __('1 commento', 'yiw'), __('% commenti', 'yiw')); ?>
			</h3>

			<ol class="commentlist">
				<?php
					wp_list_comments( array( 'type' => 'comment' ) );
				?>
			</ol>

<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : ?>
			<div class="navigation">
				<div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">&larr;</span> Commenti precedenti', 'yiw' ) ); ?></div>
				<div class="nav-next"><?php next_comments_link( __( 'Commenti successivi <span class="meta-nav">&rarr;</span>', 'yiw' ) ); ?></div>
			</div><!-- .navigation -->
<?php endif; ?>
	

<?php else : // o, se non ci sono commenti

		/* Se non ci sono commenti e i commenti sono chiusi */
		if ( ! comments_open() ) :
?>
			<p class="nocomments"><?php _e( 'I commenti sono chiusi.', 'yiw' ); ?></p>
	<?php endif; // end ! comments_open() ?>

<?php endif; // end have_comments() ?>

<?php if ( comments_open() ) : // se i commenti sono permessi aggiungiamo il modulo che permette di commentare ?>

	<div id="respond">
	
		<!-- START TITLE LEAVE A REPLY -->
	
		<!-- END TITLE LEAVE A REPLY -->
        
		<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
			<!-- START MESSAGE REQUEST REGISTRATION COMMENTS -->
			<p><?php printf(__('Devi eseguire il <a href="%s">login</a> per inserire un commento.', 'yiw'), get_option('siteurl') . '/wp-login.php?redirect_to=' . urlencode(get_permalink())); ?></p>
			<!-- END MESSAGE REQUEST REGISTRATION COMMENTS -->
		<?php else : ?>
		
		<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
		
			<?php if ( $user_ID ) : ?>
				<p><?php printf(__('Sei loggato come <a href="%1$s">%2$s</a>.', 'yiw'), get_option('siteurl') . '/wp-admin/profile.php', $user_identity); ?> <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="<?php _e('Log out da questo account', 'yiw'); ?>"><?php _e('Log out &raquo;', 'yiw'); ?></a></p>
			<?php endif; ?>
		
			<textarea name="comment" id="comment" cols="100%" rows="10" tabindex="1"></textarea>
			
			<?php if ( !$user_ID ) : ?>
				<p>
					<label for="author">Nome <?php if ($req) _e(" (richiesto)", 'yiw'); ?></label>
				</p>
				
				<p>
					<input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" tabindex="2" />
				</p>
                
                <p>
					<label for="cognome">Cognome <?php if ($req) _e(" (richiesto)", 'yiw'); ?></label>
				</p>
				
				<p>
					<input type="text" name="cognome" id="author" value="<?php echo $comment_cognome; ?>" tabindex="2" />
				</p>
                
                <p>
					<label for="città">Citta <?php if ($req) _e(" (richiesto)", 'yiw'); ?></label>
				</p>
				
				<p>
					<input type="text" name="città" id="author" value="<?php echo $comment_citta; ?>" tabindex="2" />
				</p>

				<p>
					<label for="email">Mail <?php if ($req) _e(" (richiesto)", 'yiw'); ?></label>
				</p>
				
				<p>
					<input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" tabindex="3" />
				</p>

				
			<?php endif; ?>
		
			<p>
				<input name="submit" type="submit" id="submit" tabindex="5" value="Invia Commento" />
				<?php comment_id_fields(); ?>
			</p>
			<?php do_action('comment_form', $post->ID); ?>
		</form>
		<?php endif; ?>
	</div><!-- #respond -->
			
<?php endif; ?>

</div><!-- #comments -->

wp-comments.php

PHP:
<?php
/**
 * Handles Comment Post to WordPress and prevents duplicate comment posting.
 *
 * @package WordPress
 */

if ( 'POST' != $_SERVER['REQUEST_METHOD'] ) {
	header('Allow: POST');
	header('HTTP/1.1 405 Method Not Allowed');
	header('Content-Type: text/plain');
	exit;
}

/** Sets up the WordPress Environment. */
require( dirname(__FILE__) . '/wp-load.php' );

nocache_headers();

$comment_post_ID = isset($_POST['comment_post_ID']) ? (int) $_POST['comment_post_ID'] : 0;

$post = get_post($comment_post_ID);

if ( empty($post->comment_status) ) {
	do_action('comment_id_not_found', $comment_post_ID);
	exit;
}

// get_post_status() will get the parent status for attachments.
$status = get_post_status($post);

$status_obj = get_post_status_object($status);

if ( !comments_open($comment_post_ID) ) {
	do_action('comment_closed', $comment_post_ID);
	wp_die( __('Sorry, comments are closed for this item.') );
} elseif ( 'trash' == $status ) {
	do_action('comment_on_trash', $comment_post_ID);
	exit;
} elseif ( !$status_obj->public && !$status_obj->private ) {
	do_action('comment_on_draft', $comment_post_ID);
	exit;
} elseif ( post_password_required($comment_post_ID) ) {
	do_action('comment_on_password_protected', $comment_post_ID);
	exit;
} else {
	do_action('pre_comment_on_post', $comment_post_ID);
}

$comment_author       = ( isset($_POST['author']) )  ? trim(strip_tags($_POST['author'])) : null;
$comment_cognome   = ( isset($_POST['cognome']) )  ? trim(strip_tags($_POST['cognome'])) : null;
$comment_città   = ( isset($_POST['città']) )  ? trim(strip_tags($_POST['città'])) : null;
$comment_author_email = ( isset($_POST['email']) )   ? trim($_POST['email']) : null;
$comment_author_url   = ( isset($_POST['url']) )     ? trim($_POST['url']) : null;
$comment_content      = ( isset($_POST['comment']) ) ? trim($_POST['comment']) : null;

// If the user is logged in
$user = wp_get_current_user();
if ( $user->exists() ) {
	if ( empty( $user->display_name ) )
		$user->display_name=$user->user_login;
	$comment_author       = $wpdb->escape($user->display_name);
	$comment_cognome      = $wpdb->escape($user->display_cognome);
	$comment_città      = $wpdb->escape($user->display_città);
	$comment_author_email = $wpdb->escape($user->user_email);
	$comment_author_url   = $wpdb->escape($user->user_url);
	if ( current_user_can('unfiltered_html') ) {
		if ( wp_create_nonce('unfiltered-html-comment_' . $comment_post_ID) != $_POST['_wp_unfiltered_html_comment'] ) {
			kses_remove_filters(); // start with a clean slate
			kses_init_filters(); // set up the filters
		}
	}
} else {
	if ( get_option('comment_registration') || 'private' == $status )
		wp_die( __('Sorry, you must be logged in to post a comment.') );
}

$comment_type = '';

if ( get_option('require_name_email') && !$user->exists() ) {
	if ( 6 > strlen($comment_author_email) || '' == $comment_author )
		wp_die( __('<strong>ERROR</strong>: please fill the required fields (nome, cognome, mail, città).') );
	elseif ( !is_email($comment_author_email))
		wp_die( __('<strong>ERROR</strong>: please enter a valid email address.') );
}

if ( '' == $comment_content )
	wp_die( __('<strong>ERROR</strong>: please type a comment.') );

$comment_parent = isset($_POST['comment_parent']) ? absint($_POST['comment_parent']) : 0;

$commentdata = compact('comment_post_ID', 'comment_author', 'comment_cognome', 'comment_città', 'comment_author_email', 'comment_author_url', 'comment_content', 'comment_type', 'comment_parent', 'user_ID');

$comment_id = wp_new_comment( $commentdata );

$comment = get_comment($comment_id);
do_action('set_comment_cookies', $comment, $user);

$location = empty($_POST['redirect_to']) ? get_comment_link($comment_id) : $_POST['redirect_to'] . '#comment-' . $comment_id;
$location = apply_filters('comment_post_redirect', $location, $comment);

wp_safe_redirect( $location );
exit;

Sono arrivato a questo punto però non funziona. Qualcuno può aiutarmi?
 

Fabio90

Utente Attivo
29 Feb 2012
507
0
16
Si la sto già utilizzando ma non fa altro che cambiare stile. Mi sa che bisogna intervenire a mano o aspettare un plugin..
 

Fabio90

Utente Attivo
29 Feb 2012
507
0
16
grazie lo terrò in considerazione visto che al momento non è compatibile con l'ultima versione disponibile
 
Discussioni simili
Autore Titolo Forum Risposte Data
Shyson [PHP] Personalizzare variabile PHP 0
M [Xamarin] personalizzare la schermata della chiamata in arrivo Sviluppo app per Android 0
M personalizzare privacy policy iubenda Leggi, Normative e Fisco 7
asevenx [Javascript] [HTML] personalizzare stili input select Javascript 5
elpirata Idee per personalizzare form HTML e CSS 9
Gabriele Visioli Personalizzare il forum phpBB phpBB 4
A Windows 7 personalizzare vista elenco con icone più grandi Windows e Software 0
Z Personalizzare il messaggio di avviso sul forum CMS (Content Management System) 3
A personalizzare whois per dominio Domini 1
Shyson Personalizzare window.alert Javascript 1
M Come faccio a personalizzare il bottone di facebook connect? HTML e CSS 2
P Personalizzare lista programmi in windows 7 Windows e Software 3
C script per personalizzare una maglietta Webdesign e Grafica 3
@ Configuratore per personalizzare prodotti Flash 0
A HTML personalizzare i valori di rientro di un elenco HTML e CSS 12
M Personalizzare Transmenu Javascript 1
jan267 Personalizzare Google AdSense Google AdSense 3
R personalizzare menù a tendina Javascript 2
peppoweb TUTORIAL: Personalizzare l’avvio di Windows XP Windows e Software 0
S (Compro) Fans facebook, comment, mi piace Annunci servizi di Social Media Marketing 1
E no comment... Presenta il tuo Sito 9

Discussioni simili