By Mike Bires on Monday, 25 July 2016
Posted in Technical Issues
Replies 3
Likes 0
Views 408
Votes 0
Hello,
When I paste my website's address of http://azusapd.org into Facebook, it auto populates some information about the website, as well as a picture (see attached image). How do I change the image? I want it to be our logo, as opposed to some random picture from the website.

Thanks,
Mike
Hi there,

It seem that i can choose which picture to be shown when i tried to post at my Facebook as shown http://prntscr.com/bx3799. Please advice.
·
Monday, 25 July 2016 10:24
·
0 Likes
·
0 Votes
·
0 Comments
·
When using the link in a reply to a comment, it doesn't give the option to change the photo, so unfortunately, this solution you are suggesting wont work.
·
Monday, 25 July 2016 10:30
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

Currently, it is beyond our support scope's policy as outlined in http://stackideas.com/support. You have set "single article" as your home menu instead our "EasyBlog's extension". Facebook will auto select which image to be shown. You can try it yourself by go to Facebook Debugger. But, you can do some hacks at following path ..\components\com_content\views\article\view.html.php and insert code below at display() function as shown http://prntscr.com/bx4iis.

// Detecting Active Variables
$option = $app->input->getCmd('option', '');
$view = $app->input->getCmd('view', '');
$id = JRequest::getInt('id');

$doc = JFactory::getDocument();
$sitelogoImage = "https://may23a-none1400699887.netdna-ssl.com/images/yootheme/org_logo.png";

// index.php?option=com_content&view=article&id=58
if ($option == 'com_content' && $view == 'article' && $id == 6) {
$doc->addCustomTag( '<meta property="og:image" content="' . $sitelogoImage . '"/> ');
}

Please give it a try see how it goes. If the problems still persist, can you provide us with your valid FTP address and credentials? Your given FTP address is for your other domain that is "teamfitforduty" domain.

p/s: Having said that, if you require us to perform the customization for you, you can always request for a quote from us at https://crm.stackideas.com and select "Customizations" . Our sales person would be glad to send you a quote for the customizations that you have requested.
·
Monday, 25 July 2016 13:27
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post