• Opgelost mijnsuccesformule

    (@mijnsuccesformule)


    Haii,

    Mijn site is http://www.mijnsuccesformule.nl en ik gebruik thema Mode 1.2

    Ik heb in de code van mijn comments wat zitten rommelen om wat engelse termen naar het nederlands te krijgen en om die standaard zin “you can use html” blabla weg te krijgen.
    Dat is gelukt, maar… wanneer iemand nu een reactie op een blog achter laat, zie ik hem alleen vanuit mijn dashboard en niet op de site.
    Waarschijnlijk moet er in de code dus weer iets nog toegevoegd worden?

    Ik heb gecheckt dat bij “berichten” , scherminstellingen de vinkjes bij reacties/reacties toestaan aanstaan!

    p.s. ik ben verder echt een noobie met die codes, dus als iemand me helpt, graag duidelijk uitleggen hoe/wat/welke tekst ik waar moet kopieren, thanks a lot !!!

    De code in mijn comments.php is als volg:

    <?php
    function mytheme_comment($comment, $args, $depth){
    $GLOBALS[‘comment’] = $comment;
    ?>

    <li <?php comment_class(); ?> id=”comment-<?php comment_ID() ?>”>

    <div class=”comment-content”>

    <div class=”comment-avatar”>
    <?php echo get_avatar( $comment->comment_author_email, $size = ‘160’); ?>
    </div>

    <div class=”comment-right”>

    <div class=”comment-head”>
    <h4><?php comment_author_link() ?></h4>
    <span><?php comment_date(); ?></span>
    </div>

    <div class=”comment-text”>
    <?php comment_text(); ?>
    </div>

    <div class=”comment-buttons”>
    <?php
    comment_reply_link( array_merge( $args, array( ‘depth’ => $depth, ‘max_depth’ => $args[‘max_depth’] ) ) );
    edit_comment_link(__(‘Edit’,’custom_theme’),’ ‘,”);
    ?>
    </div>

    </div>

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

    <?php }//end mytheme_comment ?>

    <?php if ( have_comments() && !post_password_required() ) : ?>

    <!– Comments –>
    <div id=”comments”>

    <h3 class=”single-separator”><?php comments_number( __(‘Er zijn nog geen reacties’,’custom_theme’), __(‘ONE COMMENT’,’custom_theme’), __(‘% COMMENTS’,’custom_theme’) ); ?></h3>

    <!– Comment List –>
    <div id=”comments-container”>
    <ul class=”commentlist”>
    <?php wp_list_comments(‘callback=mytheme_comment’); ?>

    </div>
    <!– End: Comment List –>

    <!– Comments pagination –>
    <?php if ( get_option(‘page_comments’) ) : ?>
    <div id=”comments_pagination”>
    <?php paginate_comments_links(); ?>
    <div class=”clear”></div>
    </div>
    <?php endif; ?>

    </div>
    <!– End: Comments –>

    <?php endif; ?>

    <?php if ( !have_comments() && comments_open() ) : ?>
    <!– Comments –>
    <div id=”comments”>

    <!– Title –>
    <h3 class=”single-separator”><?php _e(‘Er zijn nog geen reacties’,’custom_theme’); ?></h3>

    </div>
    <?php endif; ?>

    <?php if ( !comments_open() ) : ?>
    <!– Comments –>
    <div id=”comments”>

    <!– Title –>
    <div class=”divider”>
    <h3><?php _e(‘COMMENTS ARE CLOSED’,’custom_theme’); ?></h3>
    </div>

    </div>
    <?php endif; ?>

    <?php if ( comments_open() && !post_password_required() ) : ?>

    <!– Comment Form –>
    <div id=”leave-reply”>

    <h3 class=”single-separator”><?php _e(‘Laat een reactie achter’,’custom_theme’); ?></h3>

    <!– Form elements –>
    <?php
    $comment_form_name = get_option(‘commentform_name’);
    $comment_form_email = get_option(‘commentform_email’);
    $comment_form_url = get_option(‘commentform_website’);
    $args = array(
    ‘id_form’ => ‘commentform’,
    ‘id_submit’ => ‘submit’,
    ’title_reply’ => ”,
    ’title_reply_to’ => __( ‘Laat een reactie achter to %s’,’custom_theme’),
    ‘cancel_reply_link’ => __( ‘Cancel Reply’,’custom_theme’ ),
    ‘label_submit’ => __( ‘Plaats reactie’,’custom_theme’ ),
    ‘comment_field’ => ‘<p class=”form-row”><textarea rows=”7″ cols=”60″ name=”comment” id=”comment_content”>’ . get_option(‘commentform_message’) .'</textarea></p>’,
    ‘must_log_in’ => ‘<p class=”must-log-in”>’ . sprintf( __( ‘You must be logged in to post a comment.’,’custom_theme’ ), wp_login_url( apply_filters( ’the_permalink’, get_permalink() ) ) ) . ‘</p>’,
    ‘logged_in_as’ => ‘<p id=”logged_in”>’ . sprintf( __( ‘Logged in as %2$s. Log out?‘,’custom_theme’ ), admin_url( ‘profile.php’ ), $user_identity, wp_logout_url( apply_filters( ’the_permalink’, get_permalink( ) ) ) ) . ‘</p>’,
    ‘comment_notes_before’ => ”,

    ‘fields’ => apply_filters( ‘comment_form_default_fields’,
    array(
    ‘author’ => ‘<p class=”form-row”><input type=”text” id=”author_name” value=”‘ . esc_attr( $comment_form_name ) .'” name=”author” /></p>’,
    ‘email’ => ‘<p class=”form-row”><input type=”text” id=”author_email” value=”‘ . esc_attr( $comment_form_email ) .'” name=”email” /></p>’,
    ‘url’ => ‘<p class=”form-row”><input type=”text” id=”author_url” value=”‘ . esc_attr( $comment_form_url ) . ‘” name=”url”></p>’
    )
    ),
    );
    comment_form($args);
    ?>
    <!– End: Form elements –>

    </div>
    <!– End: Comment Form –>

    <?php endif; ?>

1 reactie aan het bekijken (van in totaal 1)
  • Denk je echt dat hier iemand deze code gaat doorspitten?
    Handig is om de comments.php uit het originele thema weer op zijn plaats te zetten. Dus downloaden, comments.php kopieren en weer terugzetten

1 reactie aan het bekijken (van in totaal 1)
  • Het onderwerp ‘Reacties van bezoekers niet zichtbaar’ is gesloten voor nieuwe reacties.