By MD King on Sunday, 29 March 2015
Posted in General Issues
Replies 9
Likes 0
Views 482
Votes 0
I have attempted multiple solutions to this recurring issue - when a user goes to share an internal link, it always shows "Login to the site" as the title of the page instead of the page's actual title.

Would like to control this behavior - would LOVE to be able to set this information & image within a module or similar....

Mike
interested in this myself too please
·
Sunday, 29 March 2015 06:00
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello MD King,

What is the link that you are trying to share? If you view that link that you are trying to share as a guest, what do you see?
·
Sunday, 29 March 2015 12:44
·
0 Likes
·
0 Votes
·
0 Comments
·
1) Pretty much any link, I will put some in the site details.
2) Guests are not allowed - prompts for login (Easy Social)

EasySocial is in lock-down mode. (Has to be this way)

Posted 3 links - one as a viewable by any registered user, then links showing the Login to the site response as posted by authorized users.
·
Monday, 30 March 2015 01:45
·
0 Likes
·
0 Votes
·
0 Comments
·
Also, is there a way to add a (Share to Easy Social) button or form via module or plugin?
·
Monday, 30 March 2015 01:46
·
0 Likes
·
0 Votes
·
0 Comments
·
You need to understand that the "crawler" is crawling your site as a "guest" not as a logged in user. There is no way to simulate this and this is one of the reasons why Facebook came up with their "opengraph" standards and all the other oembed standards out there.

If you can't view any of the links that you have posted as a guest, then the crawler will face the same issue.

As for your inquiry about posting status updates on a module, unfortunately we do not have such module currently.
·
Monday, 30 March 2015 01:57
·
0 Likes
·
0 Votes
·
0 Comments
·
Fair enough Mark - then let me ask this - is there a way to display the users avatar in a module - can even use PHP (via metamod).
Thanks in advance!
·
Monday, 30 March 2015 02:35
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

Hm, not sure if I understand you here but there's actually already the "menu module" which displays the current logged in user's avatar. Am I missing anything here?
·
Monday, 30 March 2015 02:49
·
0 Likes
·
0 Votes
·
0 Comments
·
Yes - just want the avatar, not the menu.
(Creating custom button menu)
·
Monday, 30 March 2015 02:56
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi MD King,

I am sorry for the late reply.
I'm not sure what you trying to achieve here but you can try use this code:

$my = FD::user();

// If the user is not logged in, don't show the menu
if ($my->guest) {
return;
}



<div class="es-avatar pull-left">
<img src="<?php echo $my->getAvatar( SOCIAL_AVATAR_MEDIUM );?>" />
</div>


Please do understand that we cannot assist you with customization because our hands are pretty tied to our existing development right now. By the way, if this a priority, please do post them on our sales section at https://crm.stackideas.com and our sales department would get back to you with a proper quote.

Hope this helps and please advise.
·
Monday, 30 March 2015 12:04
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post