Miled
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Social Login] Facebook new API 2.3Duplicate..
- This reply was modified 7 years, 8 months ago by Miled.
Forum: Plugins
In reply to: [WordPress Social Login] Abandoned?Any word from the dev team?
there are no team. WSL is one man project, expect for the kind contributions from the WordPress community.
the project is on hiatus because it’s no fun to be on the ME nowadays, that said I’ll be putting out a new release in the upcoming week(s).
something like this:
function wsl_use_fontawesome_icons( $provider_id, $provider_name, $authenticate_url ) { $btn_class = ( $provider_id == 'Vkontakte' ) ? 'vk' : $provider_id; ?> <a rel = "nofollow" href = "<?php echo $authenticate_url; ?>" data-provider = "<?php echo $provider_id ?>" class = "wp-social-login-provider wp-social-login-provider-<?php echo strtolower( $provider_id ); ?>" > <span> <i class="fa fa-<?php echo strtolower( $btn_class ); ?> fa-lg"></i>?  </span> </a> <?php }
inside the filter you’re using change the idp name to vk instead of vkontakte.
generated code should be
<i class="fa fa-vk fa-lg"></i>
Patches are welcome.
Forum: Plugins
In reply to: [WordPress Social Login] Add new permissions?try this filter to add extra permissions:
wsl_hook_alter_provider_scope
https://miled.github.io/wordpress-social-login/developer-api-snippets.html#collapse_lowerscope
Forum: Plugins
In reply to: [WordPress Social Login] WSL can't connect to WordPress Databasenormally it’s possible to manage your website database and to create new tables through your web host control panel. however i recommend to wait just a couple of days for upcoming release.
Forum: Plugins
In reply to: [WordPress Social Login] Name of .po and .mo filesit would be cool if you could share those translations..
just sayin
Forum: Plugins
In reply to: [WordPress Social Login] WSL can't connect to WordPress DatabaseThis is a confirmed bug and it’s due to a missing database table.
unfortunately the only solution for now is to create that missing database table manually: https://gist.github.com/miled/363c276983d00779ec1e
if you don’t know how to do that, there will be a new release by the end of this week which fixes this critical issue.
Forum: Plugins
In reply to: [WordPress Social Login] Twitter Error Loginyour wordpress profile says you’re developer so ima get technical.
twitter prefer UTC. to know twitter’s server time you can make a simple test like this https://i.imgur.com/1M5U9mJ.png
to know your webserver time simply type
date
in terminal or use phpecho date(DATE_RFC2822);
both servers time should be in sync.
Forum: Plugins
In reply to: [WordPress Social Login] Twitter Error Logintwitter and linkedin are known to complain about timestamps. check if your web server clock is out of sync.
Forum: Plugins
In reply to: [WordPress Social Login] Google Login not workingno support email
sound like an issue with your project setup on google console. try this :
Forum: Plugins
In reply to: [WordPress Social Login] Twitter login creating multiple new usersnovember 10, God willing.
Forum: Plugins
In reply to: [WordPress Social Login] Default CSS does not work, overriddenI’m not a CSS expert
me, neither.
those selectors are left empty on purpose so it doesn’t overwrite the default style.
Forum: Plugins
In reply to: [WordPress Social Login] Default CSS does not work, overriddenas has always been the case: Custom CSS rules.
in 2.2.2 it just been tweaked only slightly.