Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • BELOW IS WHAT I FIND IN MY comments.php…

    <div id="comments">
    <?php if ( post_password_required() ) : ?>
    				<div class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.', 'magazine-basic' ); ?></div>
    			</div><!-- .comments -->
    <?php
    		return;
    	endif;
    ?>
    
    <?php
    	// You can start editing here -- including this comment!
    ?>
    
    <?php if ( have_comments() ) : ?>
    			<h3 id="comments-title">
    <?php
        printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number(), 'magazine-basic' ),
            number_format_i18n( get_comments_number() ), '<em>' . get_the_title() . '</em>' );
    ?>
                </h3>
    
    <?php if ( get_comment_pages_count() > 1 ) : // are there comments to navigate through ?>
    			<div class="navigation">
    				<div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'magazine-basic' ) ); ?></div>
    				<div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'magazine-basic' ) ); ?></div>
    			</div>
    <?php endif; // check for comment navigation ?>
    
    			<ol class="commentlist">
    				<?php wp_list_comments( array( 'callback' => 'pbt_mytheme_comment', 'reply_text' => __('Reply', 'magazine-basic') ) ); ?>
    
    <?php if ( get_comment_pages_count() > 1 ) : // are there comments to navigate through ?>
    			<div class="navigation">
    				<div class="nav-previous"><?php previous_comments_link( __( '← Older Comments', 'magazine-basic' ) ); ?></div>
    				<div class="nav-next"><?php next_comments_link( __( 'Newer Comments →', 'magazine-basic' ) ); ?></div>
    			</div>
    <?php endif; // check for comment navigation ?>
    
    <?php else : // this is displayed if there are no comments so far ?>
    
    <?php endif; ?>
    
    <?php
    $args = array(
    	'comment_notes_after' => '',
    	'comment_field' => '<p class="comment-form-comment"><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true"></textarea></p>'
    );
    comment_form($args); ?>
    
    </div><!-- #comments -->

    I have the same problem.

    I’m using Magazine Basic theme.

    https://www.philippinesangeles.com

    And in the comments portion there are default fields like Name, Email, Website.

    I would like to edit the “website” field into “Telephone” and the phrase
    “Your email address will not be published. Required fields are marked *”

    into

    “Your email address and telephone will not be published. Required fields are marked *”

    But don’t know how to do it.

    Now working.

    Thread Starter blade18rivers

    (@blade18rivers)

    Err… pardon my ignorance. As I’ve said earlier I’m still pretty much a newbie and a wordpress moron. So, thank you, I really appreciate your patience and help.
    But… how exactly do I use the customcomment plug in? I downloaded it, installed it on WordPress 3.4.1. I can see it on the list of plug-ins and it’s activated… Now what do I do to customize the comment form?

    Thread Starter blade18rivers

    (@blade18rivers)

    My site is https://www.philippinesangeles.com
    The theme is Magazine Basic

    It would make this way much easier if I already have the telephone number, so I would really like to put another required field in the form for telephone. And I would also like to put there that the telephone number will not be published or shared to any third party.

    Cheers!

Viewing 5 replies - 1 through 5 (of 5 total)