 SoFvip
|
Like i sayed there is problem with sharing single wallpaper because facebook dont see image.
I tryed to add addthis in wallpaper.php but still doesnt work.
Pls help its very important for me.
PS. Sorry for my english i hope you understand me
|
 veppa
|
you can insert meta tags described here http://developers.facebook.com/docs/share/
<meta property="og:image" content="THUMB_URL" />
into your template. Facebook uses this meta tag to determine witch thumb to use for given page.
To add it edit your frontend.php file. if you use base template then it will be user-content\templates\base\layouts\frontend.php file.
insert into head section this php code:
< ?php
if($wallpaper){
echo '<meta property="og:image" content="'.Wallpaper::img($wallpaper).'" /> ';
}
?>
|