Hi,
Problem "You can not access the private section of this site"
I can't try with Facebook login because your app is in Dev mode, please publish up.
Problem duplicated Social Login buttons
These buttons are added with javascript on login form, our script add login button to container with "login" class.
In your template (index.php) you have this code:
<body class="<?php echo $optionClass; ?> <?php echo $view; ?>">
$view for login page is "login", so add social login even on body.
To solve this issue we have do this:
- backup /plugins/jsn/socialconnect/socialconnect.php into /plugins/jsn/socialconnect/socialconnect.old.php
- add original /plugins/jsn/socialconnect/socialconnect.php
- edit line 87 from
jQuery(".login").append(\'<div class="socialconnect"></div>\');
to this
jQuery("body div.login").append(\'<div class="socialconnect"></div>\');
In next release we will fix this.