Hi,
Can you try this:
Open sites/default/plugins/uni_login/uni_login.php
Around line 79, replace
var_dump($user_profile);
with
Oddly, we did not get this problem while testing in our localhost.
To remove the other two login options, in the same file, around line 219, replace
$html = <<<EOD
<div class="row codo_uni_login" id="codo_uni_login">
<div class="codo_login_btn codo_twitter_login_btn" id="codo_login_with_twitter"><span>Twitter</span></div>
<div class="codo_login_btn codo_fb_login_btn" id="codo_login_with_facebook"><span>Facebook</span></div>
<div class="codo_login_btn codo_google_login_btn" id="codo_login_with_google"><span>Google</span></div>
</div>
EOD;
with
$html = <<<EOD
<div class="row codo_uni_login" id="codo_uni_login">
<div class="codo_login_btn codo_google_login_btn" id="codo_login_with_google"><span>Google</span></div>
</div>
EOD;
We will provide options in the next version, so that you won't have to do this manually.
Hi,
Can you try this:
Open sites/default/plugins/uni_login/uni_login.php
Around line 79, replace
```php
var_dump($user_profile);
```
with
```php
//var_dump($user_profile);
```
Oddly, we did not get this problem while testing in our localhost.
To remove the other two login options, in the same file, around line 219, replace
```php
$html = &lt;&lt;&lt;EOD
&lt;div class="row codo_uni_login" id="codo_uni_login"&gt;
&lt;div class="codo_login_btn codo_twitter_login_btn" id="codo_login_with_twitter"&gt;&lt;span&gt;Twitter&lt;/span&gt;&lt;/div&gt;
&lt;div class="codo_login_btn codo_fb_login_btn" id="codo_login_with_facebook"&gt;&lt;span&gt;Facebook&lt;/span&gt;&lt;/div&gt;
&lt;div class="codo_login_btn codo_google_login_btn" id="codo_login_with_google"&gt;&lt;span&gt;Google&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
EOD;
```
with
```php
$html = &lt;&lt;&lt;EOD
&lt;div class="row codo_uni_login" id="codo_uni_login"&gt;
&lt;div class="codo_login_btn codo_google_login_btn" id="codo_login_with_google"&gt;&lt;span&gt;Google&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
EOD;
```
We will provide options in the next version, so that you won't have to do this manually.