• Resolved itprivacy

    (@itprivacy)


    Hello their,

    I’m using both plugins STC and SFC – SFC button will not appear.
    I added the follwing code to my comment-template:

    <div id="comment-user-details"> <?php do_action('alt_comment_login'); ?>
            <p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" />
            <label for="author">Name<?php if ($req) _e(' *'); ?></label></p>
    
            <p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" />
            <label for="email">E-mail <?php if ($req) _e(' *'); ?></label></p>
    
            <p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" />
            <label for="url">Website</label></p>
    
    	</div>

    I can see the text “Connect with Facebook” on the page but there is no button.

    Instead of this the twitter-login works pretty well.

    What’s wrong?
    Thank you!

Viewing 1 replies (of 1 total)
  • Plugin Author Samuel Wood (Otto)

    (@otto42)

    WordPress.org Admin

    This usually means that your theme doesn’t have the proper footer code in it. In your theme’s footer.php file, find the ending </body> line and add this code immediately before it:

    <?php wp_footer(); ?>

    That should eliminate your problem.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Simple Facebook Connect] Using both STC and SFC – SFC button will not appear’ is closed to new replies.