Welcome Visitor, Please Login or Register Now Wednesday, April 24, 2024 07:14 AM 
Forums Index > Mewsoft Products > Auctionawy > FaceBook Share Question
New Topic   New Reply
Search for:
Author Message
anthillauctions anthillauctions's personal page
Registered Member
Posts: 26 Display member's posts
Joined: 04-26-12 09:36 PM
Member Offline
View Member's Profile Send private message
 
Back to top
FaceBook Share Question Edit Delete Reply with quote Quote
First Post Posted on: 07-02-16 12:30 AM next post first post
i notice a star in the image box within the share to facebook. what is this image called and what file is it in please so i can replace with my logo.
mewsoft mewsoft's personal page
Administrator Team Member
Posts: 5381 Display member's posts
Joined: 04-24-24 07:14 AM
Location: knxoville, TN, USA
Member Offline
View Member's Profile Visit member's website Mewsoft Corporation Send private message ICQ Messenger: ICQ AIM Messenger: AIM YIM Messenger: Yahoo MSN Messenger: MSN
 
Back to top
How to change the image when you share a link on Facebook Edit Delete Reply with quote Quote
Reply #: 1 Posted on: 07-02-16 09:59 AM next post previous post

Hello,

See this article

http://mikeeverhart.net/facebook/how-to-change-the-image-when-you-share-a-link-on-facebook/


How to change the image when you share a link on Facebook

When someone shares a link to your website on Facebook, certain information about your site (or more specifically, the actual link that is shared) is automatically gathered and displayed. For example, if you type www.google.com you will see something like:
Sharing Links on Facebook

This article is going to explain how this process works, and how you can change the image and information that gets displayed about your website.

 

Where does Facebook get the Information about my Website?

By default, when Facebook gathers the information that it uses for your website it gets the information from:

  1. Title – This comes from the <title> tag in your website’s source code.
  2. Description – This comes from the meta description tag in your website’s source code. If you don’t have a meta description tag, then it chooses a blurb of text from the beginning of your site.
  3. Image – This is usually the first image that is found on the page (if there are any) but sometimes it appears to randomly choose images.

Here is an example of how it looks by default when I share a link to MikeEverhart.net:
Sharing Links on Facebook

The information that Facebook uses is just as I’ve described above:

  • The Title “Mike Everhart | Web Designer, Programmer, and Technology Consultant” comes from the <title> tag.
  • The Description “Mike Everhart is a web designer, programmer, and technology consultant based out of Memphis, TN.” comes from the meta description tag.
  • The image is from a recent blog post that is found on the homepage. As you can see, three images were actually found.

How do I Change the Image and Information that is Displayed?

Facebook has recently implemented OGP, or the Open Graph Protocol. For this tutorial, all you really need to know about OGP is that it gives you a way to provide extra information about your website specifically for use with social networking sites like Facebook.

Implementing OGP data into your website consists of adding a few meta tags to your website’s source code, between the <head> and </head> tags. OGP has several “properties” that allow you to add detailed information about your website, but four of these properties are required:

  1. og:title – The title of the page that you want to display
  2. og:type – The type of content on the page (more about OGP Content Types)
  3. og:image – The URL to the image that you want to display
  4. og:url – The URL to the webpage
1
2
3
4
5
6
7
8
9
<head>
    ...
    <!-- Required OGP Tags -->
    <meta property="og:title" content="Mike Everhart - Web Designer. Programmer. Geek." />
    <meta property="og:type" content="website" />
    <meta property="og:url" content="http://mikeeverhart.net/" />
    <meta property="og:image" content="http://mikeeverhart.net/mike-everhart-facebook.png" />
    ...
</head>

Some of the other, optional properties you should consider including are:

  • og:description – The description that you want to display
  • og:site_name – If your site belongs to a larger network of sites, this tag can be used to identify the “main” site
1
2
3
4
...
    <meta property="og:description" content="The personal blog of Mike Everhart - Ramblings of a sleep-deprived geek, web designer, programmer, and technology consultant." />
    <meta property="og:site_name" content="MikeEverhart.net" />
</head>

Testing Your Changes

This is an important step of the process that you should not skip! Once you have added the OGP tags to your website, you should use Facebook’s URL Linter to test your changes. Enter the URL to your website, or the specific page you added the OGP tags to and click the button that says Lint.

Not only will this reveal whether you did everything correctly or not, it will also cause Facebook to clear any old information that it may have cached for your site.

Don’t worry if you see an error that mentions “failing to provide a valid list of administrators” there is a 99.9% chance that this does not apply to your website. If you see any other errors, you’ve done something wrong.

The Final Product

Here’s how it looks after I implemented the above OGP tags on my site:
Sharing links on Facebook - with OGP

Bonus Tip: Creating the image you want to use

According to Facebook, the image should be at least 50px wide by 50px tall, and should have an aspect ratio of no larger than 3:1. In other words, an image that is 50px wide should be no taller than 150px. The accepted image formats are png, jpg, and gif.

The “optimal” image size will depend largely on the length of your site title and description, as well as your personal preference. I usually like to start with an image that is either 50x150px or 100x100px.


Mewsoft Support
www.mewsoft.com

anthillauctions anthillauctions's personal page
Registered Member
Posts: 26 Display member's posts
Joined: 04-26-12 09:36 PM
Member Offline
View Member's Profile Send private message
 
Back to top
Re: FaceBook Share Question Edit Delete Reply with quote Quote
Reply #: 2 Posted on: 07-02-16 12:42 PM next post previous post
thank you smile this will help alot!
anthillauctions anthillauctions's personal page
Registered Member
Posts: 26 Display member's posts
Joined: 04-26-12 09:36 PM
Member Offline
View Member's Profile Send private message
 
Back to top
Re: FaceBook Share Question Edit Delete Reply with quote Quote
Reply #: 3 Posted on: 07-02-16 11:09 PM next post previous post
why is this showing this way? i know it shows fine if not linked through a share. its only when i click a shared link on facebook it takes me to pages looking like this. no design or anything frown
anthillauctions anthillauctions's personal page
Registered Member
Posts: 26 Display member's posts
Joined: 04-26-12 09:36 PM
Member Offline
View Member's Profile Send private message
 
Back to top
Re: FaceBook Share Question Edit Delete Reply with quote Quote
Reply #: 4 Posted on: 07-04-16 02:34 PM next post previous post
it is also happening for the clients also. but if they click on something it shows correctly. why does it show like this on initial share? it happens when i copy and paste from address bar into facebook, it shows when someone uses the LIKE buttons within site........
mewsoft mewsoft's personal page
Administrator Team Member
Posts: 5381 Display member's posts
Joined: 04-24-24 07:14 AM
Location: knxoville, TN, USA
Member Offline
View Member's Profile Visit member's website Mewsoft Corporation Send private message ICQ Messenger: ICQ AIM Messenger: AIM YIM Messenger: Yahoo MSN Messenger: MSN
 
Back to top
Re: FaceBook Share Question Edit Delete Reply with quote Quote
Reply #: 5 Posted on: 07-04-16 04:52 PM last post previous post

Hello,

as I answered the link above show help about that subject, html customization you have to do it on your own.

Thanks


Mewsoft Support
www.mewsoft.com

Page 1 of 1
Go to page:

New Topic   New Reply Mark Unread
Jump to:  
Delete   Move     Lock   +Favorits   +Notify   Print