Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter lJonesl

    (@ljonesl)

    Sorry for the double post. Found the solution to my problem.

    Plugin Author Codeinwp

    (@codeinwp)

    Hi,

    Awesome. Thank you for choosing our products.

    If we can help you with something please let us know.

    Best regard.

    Hi,
    can you tell me, how to resolve the problem?

    want to know that as well… missed some hook?

    Ok it is indeed all about the existence of <?php comment_form(); ?>.
    You should customize that then it will show up! cheers!

    For me it was about the hook do_action( 'comment_form_logged_in_after', $commenter, $user_identity ); that was missing in my template ??

    sorry for the amount of comments, but i also needed this code: `
    <?php do_action( ‘comment_form_top’ ); ?>
    <?php
    if ( is_user_logged_in() ) :
    echo apply_filters( ‘comment_form_logged_in’, $args[‘logged_in_as’], $commenter, $user_identity );
    do_action( ‘comment_form_logged_in_after’, $commenter, $user_identity ); ?>
    <?php else : ?>
    <?php echo $args[‘comment_notes_before’]; ?>
    <?php
    /**
    * Fires before the comment fields in the comment form.
    *
    * @since 3.0.0
    */
    do_action( ‘comment_form_before_fields’ );
    foreach ( (array) $args[‘fields’] as $name => $field ) {
    /**
    * Filter a comment form field for display.
    *
    * The dynamic portion of the filter hook, $name, refers to the name
    * of the comment form field. Such as ‘author’, ’email’, or ‘url’.
    *
    * @since 3.0.0
    *
    * @param string $field The HTML-formatted output of the comment form field.
    */
    echo apply_filters( “comment_form_field_{$name}”, $field ) . “\n”;
    }
    /**
    * Fires after the comment fields in the comment form.
    *
    * @since 3.0.0
    */
    do_action( ‘comment_form_after_fields’ );
    ?>
    </div>
    <?php endif; ?>
    `

    to properly show the given ratings per comment. See the comments files of your wordpress installation to make sure you have all the hooks. but the above code should fix it all ??

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Comment reviews feature not showing’ is closed to new replies.