0.3.0 
- Updated for beta 16
Updating
composer require fof/socialprofile:"*"
composer require fof/socialprofile:"*"
Seems to be a bug where buttons might be null: https://discuss.flarum.org/d/26840-admin-profile-corrupted/12
Pollux I still can't add a mail address: The url format is invalid.
mailto:adress@email.com
option doesn't work either... The url format is invalid.
[deleted] mailto:adress@email.com option doesn't work either...
Well, that's what I tried first and which I expected to work. But I also tried the address without protocol.
The problem here is the validation of the url
field. In this extension, we validate the input is infact a url:
'url' => ['url', 'max:120', 'required']
Because mailto:a@b.c
won't pass validation as a url, then you get the error you describe.
The only way around this I can think of right now would be to create a custom validation rule that would pass either a url or valid email address. Then there's the extra issue that we actually don't just want a valid email address, but a valid mailto
instead.
Perhaps a regex pattern might be the way to go here. I'll give it some thought, but also open to any other thoughts/comments/ideas too.
I've not been able to address IanM just yet, but have opened an issue here FriendsOfFlarum/socialprofile20 so that it does not get lost. I'm focussing on getting as many FoF extensions ready for the Flarum 1.0 release as soon as possible, but we will re-visit again soon
I can’t click on the SNS icons using a tablet (iPad). Is this normal? Works on my phone but both use Safari
Can someone from FOF review this PR? FriendsOfFlarum/socialprofile24
It fixes a lot of problems, and has been pending for days.
Darkle did u check permission?
Justoverclock Everything has administrator permissions, but now reading it I think the problem is that there are no permissions for this extension Can anyone confirm this?
Darkle yep, now I see that there are no permission
I suggest adding permissions to allow specific groups only to have a social profile.
Any news on this loading icons from a remote tracking location?
See: FriendsOfFlarum/socialprofile22
rant this is really my main annoyance with the Flarum ecosystem... too much careless drive-by user-tracking and GDPR violations build into extensions. rant
poVoq rant this is really my main annoyance with the Flarum ecosystem... too much careless drive-by user-tracking and GDPR violations build into extensions. rant
This is unfortunately a common theme - it's not just the Flarum ecosystem. WordPress does this all the time. Not great for privacy, but in fairness to developers, their job is to deliver a stable framework, and the privacy aspect is our concern.
<a>
with noopener
, nofollow
, noreferrer
window.open
Thanks @rafaucau for his work that I saw too late, but still implemented based of his changes.