Notice

If you are going to submit ticket for our themes support , then make sure we are not providing support for any Porn/Adult related websites.
When You Submit Ticket Please Include Your WordPress & FTP login info with Website URL so When our team will see any error then there was no need to wait for login info, Our Team will fix that ASAP.
We are offering Designing services like LOGO Design and Banner Design etc.

Okay
  Print

Wrong Image on Facebook Share .

Open File header.php

File Path: wp-content/themes/beetube/header.php

Line Number: 36

You will see this code.
<?php jtheme_meta_description($post_id); ?>

Add this code after this.

<meta property="og:type" content="video" />  
<meta property="og:image" content="<?php $image_id = get_post_thumbnail_id();
$image_url = wp_get_attachment_image_src($image_id,'small', true);
echo $image_url[0];  ?>"/>

Update file and problem is solved.