رفتن به مطلب

تغییرات در بخش کامنت


پست های پیشنهاد شده

سلام

طبق تصویر زیر بالای کادر کامنت یک نوشته وجود دارد : ایمیل نمایش داده نمیشود .....

بنده میخواهم این متن را ویرایش کنم ولی به قسمت کامنت های پوسته رفتم این متن وجود نداشت لطفا راهنمایی بفرمائید که به کدام قسمت بروم .

ادرس سایت در امضا وجود دارد

 

2.jpg

لینک به ارسال

سلام و درود

ببینید شما باید این ای دی را درون فایل های مربوط به کامنت بخش فرم را پیدا کنید یک اسپن است با این ای دی email-notes،شما از چه افزونه ای استفاده میکنید؟>

مطمئنن باید باشه درون فایل های مربوط دیدگاهاتون.

موفق باشید./

لینک به ارسال

سلام. دوست عزیز معمولا تو پوشه قالبت یک فایل php وجود داره به نام comments یا این فایل درون پوشه include قرار داره در اون فایل تمام کدها و دستورات نوشتاری و دیداری بخش کامنتها وجود داره و حتی میتونی خودت یکسر از قوانین رو دوباره ایجاد کنی در اون بخش برای دیدگاه ها...

لینک به ارسال
<?php
/**
 * The template for displaying Comments.
 *
 * The area of the page that contains both current comments
 * and the comment form. The actual display of comments is
 * handled by a callback to twentytwelve_comment() which is
 * located in the functions.php file.
 *
 * @package WordPress
 * @subpackage Twenty_Twelve
 * @since Twenty Twelve 1.0
 */

/*
 * If the current post is protected by a password and
 * the visitor has not yet entered the password we will
 * return early without loading the comments.
 */
if ( post_password_required() )
	return;
?>

<div id="comments" class="comments-area">

	<?php // You can start editing here -- including this comment! ?>

	<?php if ( have_comments() ) : ?>
		<h2 class="single-title">
			<?php
				printf( _n( 'One Comment', '%1$s Comments', get_comments_number(), 'theme' ),
					number_format_i18n( get_comments_number() ));
			?>
		</h2>

		<ol class="comments_list">
			<?php wp_list_comments( array( 'callback' => 'mom_comment', 'style' => 'ol' ) ); ?>
		</ol><!-- .commentlist -->

		<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
		<nav id="comment-nav-below" class="navigation" role="navigation">
			<h1 class="assistive-text section-heading"><?php _e( 'Comment navigation', 'theme' ); ?></h1>
			<div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'theme' ) ); ?></div>
			<div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', 'theme' ) ); ?></div>
		</nav>
		<?php endif; // check for comment navigation ?>

		<?php
		/* If there are no comments and comments are closed, let's leave a note.
		 * But we only want the note on posts and pages that had comments in the first place.
		 */
		if ( ! comments_open() && get_comments_number() ) : ?>
		<p class="nocomments"><?php _e( 'Comments are closed.' , 'theme' ); ?></p>
		<?php endif; ?>

	<?php endif; // have_comments() ?>
	<?php
	$commenter = wp_get_current_commenter();
	$req = get_option( 'require_name_email' );
	$aria_req = ( $req ? " aria-required='true'" : '' );	
	$args = array(
	'id_form' => 'commentform',
	'id_submit' => 'submit-comment',
	'title_reply' => __( 'Leave a Reply', 'theme' ),
	'title_reply_to' => __( 'Leave a Reply to %s', 'theme' ),
	'cancel_reply_link' => __( 'Cancel Reply', 'theme' ),
	'label_submit' => __( 'Post Comment', 'theme' ),
	'comment_field' => '<p class="comment-form-comment"><textarea id="comment" placeholder="'.__('Comment...', 'theme').'" name="comment" cols="45" rows="8" aria-required="true"></textarea></p>',
	'must_log_in' => '<p class="must-log-in">' .  sprintf( __( 'You must be <a href="%s">logged in</a> to post a comment.' ), wp_login_url( apply_filters( 'the_permalink', get_permalink( ) ) ) ) . '</p>',
	'logged_in_as' => '<p class="logged-in-as">' . sprintf( __( 'Logged in as <a href="%1$s">%2$s</a>. <a href="%3$s" title="Log out of this account">Log out?</a>' ), admin_url( 'profile.php' ), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( ) ) ) ) . '</p>',
	'comment_notes_after' => '',
	'fields' => apply_filters( 'comment_form_default_fields', array(
		'author' => '<input id="author" name="author" type="text" placeholder="'.__('Name (required)', 'theme').'" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' />',
		'email' => '<input id="email" name="email" type="text" placeholder="'.__('Email (required)', 'theme').'" value="' . esc_attr(  $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' />',
		'url' => '<input id="url" name="url" type="text" placeholder="'.__('Website', 'theme').'" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" />' 

		) ) );
	?>
	
	<?php comment_form($args); ?>

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

این کد کامنت هست

لینک به ارسال
در هم اکنون، lawgostar گفته است :

<?php
/**
 * The template for displaying Comments.
 *
 * The area of the page that contains both current comments
 * and the comment form. The actual display of comments is
 * handled by a callback to twentytwelve_comment() which is
 * located in the functions.php file.
 *
 * @package WordPress
 * @subpackage Twenty_Twelve
 * @since Twenty Twelve 1.0
 */

/*
 * If the current post is protected by a password and
 * the visitor has not yet entered the password we will
 * return early without loading the comments.
 */
if ( post_password_required() )
	return;
?>

<div id="comments" class="comments-area">

	<?php // You can start editing here -- including this comment! ?>

	<?php if ( have_comments() ) : ?>
		<h2 class="single-title">
			<?php
				printf( _n( 'One Comment', '%1$s Comments', get_comments_number(), 'theme' ),
					number_format_i18n( get_comments_number() ));
			?>
		</h2>

		<ol class="comments_list">
			<?php wp_list_comments( array( 'callback' => 'mom_comment', 'style' => 'ol' ) ); ?>
		</ol><!-- .commentlist -->

		<?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // are there comments to navigate through ?>
		<nav id="comment-nav-below" class="navigation" role="navigation">
			<h1 class="assistive-text section-heading"><?php _e( 'Comment navigation', 'theme' ); ?></h1>
			<div class="nav-previous"><?php previous_comments_link( __( '&larr; Older Comments', 'theme' ) ); ?></div>
			<div class="nav-next"><?php next_comments_link( __( 'Newer Comments &rarr;', 'theme' ) ); ?></div>
		</nav>
		<?php endif; // check for comment navigation ?>

		<?php
		/* If there are no comments and comments are closed, let's leave a note.
		 * But we only want the note on posts and pages that had comments in the first place.
		 */
		if ( ! comments_open() && get_comments_number() ) : ?>
		<p class="nocomments"><?php _e( 'Comments are closed.' , 'theme' ); ?></p>
		<?php endif; ?>

	<?php endif; // have_comments() ?>
	<?php
	$commenter = wp_get_current_commenter();
	$req = get_option( 'require_name_email' );
	$aria_req = ( $req ? " aria-required='true'" : '' );	
	$args = array(
	'id_form' => 'commentform',
	'id_submit' => 'submit-comment',
	'title_reply' => __( 'Leave a Reply', 'theme' ),
	'title_reply_to' => __( 'Leave a Reply to %s', 'theme' ),
	'cancel_reply_link' => __( 'Cancel Reply', 'theme' ),
	'label_submit' => __( 'Post Comment', 'theme' ),
	'comment_field' => '<p class="comment-form-comment"><textarea id="comment" placeholder="'.__('Comment...', 'theme').'" name="comment" cols="45" rows="8" aria-required="true"></textarea></p>',
	'must_log_in' => '<p class="must-log-in">' .  sprintf( __( 'You must be <a href="%s">logged in</a> to post a comment.' ), wp_login_url( apply_filters( 'the_permalink', get_permalink( ) ) ) ) . '</p>',
	'logged_in_as' => '<p class="logged-in-as">' . sprintf( __( 'Logged in as <a href="%1$s">%2$s</a>. <a href="%3$s" title="Log out of this account">Log out?</a>' ), admin_url( 'profile.php' ), $user_identity, wp_logout_url( apply_filters( 'the_permalink', get_permalink( ) ) ) ) . '</p>',
	'comment_notes_after' => '',
	'fields' => apply_filters( 'comment_form_default_fields', array(
		'author' => '<input id="author" name="author" type="text" placeholder="'.__('Name (required)', 'theme').'" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' />',
		'email' => '<input id="email" name="email" type="text" placeholder="'.__('Email (required)', 'theme').'" value="' . esc_attr(  $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' />',
		'url' => '<input id="url" name="url" type="text" placeholder="'.__('Website', 'theme').'" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" />' 

		) ) );
	?>
	
	<?php comment_form($args); ?>

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

این کد کامنت هست

قالبت گود نیوز اگه دوست داری نمونشو بزار تا برات اصلاحش کنم

ویرایش شده توسط sasan_dingo
لینک به ارسال

به گفتگو بپیوندید

هم اکنون می توانید مطلب خود را ارسال نمایید و بعداً ثبت نام کنید. اگر حساب کاربری دارید، برای ارسال با حساب کاربری خود اکنون وارد شوید .

مهمان
ارسال پاسخ به این موضوع ...

×   شما در حال چسباندن محتوایی با قالب بندی هستید.   حذف قالب بندی

  تنها استفاده از 75 اموجی مجاز می باشد.

×   لینک شما به صورت اتوماتیک جای گذاری شد.   نمایش به صورت لینک

×   محتوای قبلی شما بازگردانی شد.   پاک کردن محتوای ویرایشگر

×   شما مستقیما نمی توانید تصویر خود را قرار دهید. یا آن را اینجا بارگذاری کنید یا از یک URL قرار دهید.

×
×
  • اضافه کردن...