Hmm, I activated on a test server and not I see both the facebook comment box and the standard wordpress comment box. Are you seeing something different?
Kadence Themes
Thread Starter
Frank
(@fwulfers)
Interesting, I didn’t have the direct Facebook commneting enabled and that seems to work fine now. There is an additional part where you can use other social login ID’s like Google+ / Twitter and comment in the standard WP comment box. And that part is working fine with other themes but not in Pinnacle/Virtue.
ok, I’ll fix this. If you want a quick fix add this:
<?php do_action( 'comment_form_top' ); ?>
in-between lines 69-70 of the templates/comments.php file.
Kadence Themes
Thread Starter
Frank
(@fwulfers)
Doesn’t seem to work for me. I have this in /themes/pinnacle/templates/comments.php now:
69 <?php if (is_user_logged_in()) : ?>
70 <?php do_action( ‘comment_form_top’ ); ?>
71 <p class=”comment-login-details”>
ok, sorry I added a line higher.. should be:
<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
<?php do_action( 'comment_form_top' ); ?>
<?php if (is_user_logged_in()) : ?>
<p class="comment-login-details">
Kadence Themes
Thread Starter
Frank
(@fwulfers)
Awesome, it’s working great now. Thanks again for your outstanding support.