Viewing 10 replies - 1 through 10 (of 10 total)
  • Moderator t-p

    (@t-p)

    there is such plugin!

    Thread Starter meetmahi

    (@meetmahi)

    Tara thanks for reply

    Not any plugin install in my theme

    Thread Starter meetmahi

    (@meetmahi)

    i don’t know may have problem in (comments-form.php) or (comments.php) .but i have not installed any plugins for comment.iam using ares wp theme

    Thread Starter meetmahi

    (@meetmahi)

    <?php if (‘open’ == $post->comment_status) : ?>

    <?php if ( get_option(‘comment_registration’) && !is_user_logged_in() ) : ?>
    <p>You must be “>logged in to post a comment.</p>
    <?php else : ?>

    <!– Start of form –>
    <form action=”<?php echo get_option(‘siteurl’); ?>/wp-comments-post.php” method=”post” id=”commentform” class=”comment_form”>
    <fieldset>

    <h2 class=”widgettitle”><?php echo _e(“Laisser un commentaire”, THEMEDOMAIN); ?></h2>

    <?php if ( is_user_logged_in() ) : ?>

    <p>
    <input class=”round m input” name=”author” type=”text” id=”author” title=”<?php echo _e( ‘Nom’, THEMEDOMAIN ); ?>*” value=”” tabindex=”1″ style=”width:50%” />
    </p>
    <p>
    <input class=”round m input” name=”email” type=”text” id=”email” title=”<?php echo _e( ‘Email’, THEMEDOMAIN ); ?>*” value=”” tabindex=”2″ style=”width:50%” />
    </p>
    <p>
    <input class=”round m input” name=”url” type=”text” id=”url” title=”<?php echo _e( ‘Site Internet’, THEMEDOMAIN ); ?>*” value=”” tabindex=”3″ style=”width:50%” />
    </p>

    <?php endif; ?>
    <p>
    <textarea name=”comment” cols=”40″ rows=”7″ id=”comment” tabindex=”4″ title=”<?php echo _e( ‘Message’, THEMEDOMAIN ); ?>*” style=”width:97%”></textarea>
    </p>
    <p>
    <input name=”submit” type=”submit” id=”submit” value=”Envoyer” tabindex=”5″ /> 
    <?php cancel_comment_reply_link(__( ‘Ne Pas Répondre’, THEMEDOMAIN )); ?>
    </p>
    <?php comment_id_fields(); ?>
    <?php do_action(‘comment_form’, $post->ID); ?>

    </fieldset>
    </form>
    <!– End of form –>

    <?php endif; // If registration required and not logged in ?>

    <?php endif; // if comment is open ?>

    Thread Starter meetmahi

    (@meetmahi)

    this is comment.php coding

    <div class=”comment_inner”>
    <?php
    if ( post_password_required() ) { ?>
    <p><?php _e( ‘This post is password protected. Enter the password to view comments.’, THEMEDOMAIN ); ?></p>
    <?php
    return;
    }

    if( have_comments() ) : ?>

    <h2 class=”widgettitle”><?php comments_number(‘No Commentaire’, ‘1 Commentaire’, ‘% Commentaires’); ?></h2>

    <?php wp_list_comments( array(‘callback’ => ‘pp_comment’, ‘avatar_size’ => ’40’) ); ?>

    <!– End of thread –>
    <br class=”clear”/>
    <?php endif; ?>

    <?php if ( get_comment_pages_count() > 1 && get_option( ‘page_comments’ ) ) : // Are there comments to navigate through? ?>
    <div class=”pagination”><p><?php previous_comments_link(); ?> <?php next_comments_link(); ?></p></div><br class=”clear”/><div class=”line”></div>

    <?php endif; // check for comment navigation ?>

    <?php if (‘open’ == $post->comment_status) : ?>

    <div id=”respond”>
    <?php include(TEMPLATEPATH . ‘/templates/comments-form.php’); ?>
    </div>

    <?php endif; ?>

    <br class=”clear”/>
    </div>

    Moderator t-p

    (@t-p)

    you posted this https://wordpress.org/plugins/reply/ link. When I click on it I get to a page that “Whoops! We couldn’t find that plugin…”.

    What is it?

    Thread Starter meetmahi

    (@meetmahi)

    This link is nothing its inserted by mistake .http://changerderoutine.fr/stranded-at-the-airport-dont-forget-rule-240/

    this is my site link

    Moderator t-p

    (@t-p)

    try a few basic troubleshooting steps:
    – Flushing any caching plugins you might be running, as well as server and/or browser caches.
    – deactivating ALL plugins temporarily to see if this resolves the problem (plugin functions can interfere). If this works, re-activate them individually (one-by-one) to find the problematic plugin(s).
    – If that does not resolve the issue, try switching to the unedited default Twenty Fifteen theme for a moment using the WP dashboard to rule out any theme-specific issue (theme functions can interfere like plugins).
    – If that does not resolve the issue, try resetting the plugins foldervia FTP or SFTP or whatever file management application your host provides. Sometimes, an apparently inactive plugin can still cause problems.

    Thread Starter meetmahi

    (@meetmahi)

    yes on Twenty_Fifteen theme works fine. But on Ares Theme still same problem . How to fix it. I tried to deactivate with plugins as well. but still same

    Moderator t-p

    (@t-p)

    yes on Twenty_Fifteen theme works fine. But on Ares Theme still same problem .

    – this means your Ares theme is broken.
    – find out where its broken and fix it
    – you also try asking at that theme’s developers.

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

The topic ‘comment box problem’ is closed to new replies.