![]() |
Adding user profile picture to open graph
Hi
In my CMS articles I displays the avatars of the author of the article, but because the image is small (60×60 px) Facebook didn't grab it when I share the link to Facebook. So I think in adding user profile picture (Big size) as a variable to the opengraph array. The question is .. How I can get the profile picture in every article? then how I can add it to opengraph array? Thanks in advance. |
Assuming you have the user's userid in $userid, you can get the URL of their profile pic as follows:
PHP Code:
|
Thank you mark, I will give it a try, but how I can inject the profilepic to the opengraph array?
I tried it manually by adding link to the image in the top of vbcms_content_article template but Facebook ignore it and don't add it to the og:images !! |
I don't know what key you wish to use for the $opengraph array, but suppose with wish to use the key "profilepicurl', then you could add:
PHP Code:
|
I want to use og:image property.
|
Quote:
I have negligible experience with the CMS articles feature of vB, but I thought I would be able to give you a leg up on getting the data you want into the array. :D |
After a quick google search, it appears you need a meta tag in your template, and you will have to register the URL variable for your template, and your meta tag would then look something like:
HTML Code:
<meta property="og:image" content="{vb:raw profilepicurl}" /> |
:D
When you share a link in FB, the image that appears as thumbnail comes from this property. If you open any page in sharing debugger tools you will see all properties that FB uses from your page. https://developers.facebook.com/tools/debug/sharing/ --------------- Added [DATE]1483478739[/DATE] at [TIME]1483478739[/TIME] --------------- Stupid Q How I can register the variable? --------------- Added [DATE]1483479009[/DATE] at [TIME]1483479009[/TIME] --------------- PHP Code:
|
Suppose you have the name of the template to which you wish to send the variable in $template_name, then in your plugin, you could use
PHP Code:
|
Here is my plugin, is it right?
Hook: vbcms_article_populate_end(vbulletin cms) Name: Add profile picture as meta tag Order: 5 Code: PHP Code:
It didn't work !! Here is what I get in my source code HTML Code:
<meta property="og:image" content="" /> |
You will need to get the actual userid, it's not going to automatically be in $userid...I just used that as a placeholder...for example, at the plugin hook location "postbit_display_complete" you can get it from $post['userid'], but I don't know what array is going to contain it at your plugin hook location.
Looking at that template, I would first try (at the very top of the plugin): PHP Code:
|
authorid is the variable :)
Here is the code I use to show avatar for example PHP Code:
I modified the plugin code to this, but without luck !! PHP Code:
I made a lot of tests, but I don't know why the plugin can't see $authorid or $poststarter['userid'] or even $userid. BTW, if I put {vb:raw authorid} in the template it give me the author id !! Any suggestions? --------------- Added [DATE]1483538845[/DATE] at [TIME]1483538845[/TIME] --------------- No suggestions to how to get the authorid to complete this plugin? --------------- Added [DATE]1483542079[/DATE] at [TIME]1483542079[/TIME] --------------- I found it ^_^ PHP Code:
there is only one problem left, this code PHP Code:
PHP Code:
PHP Code:
Thanks in advance. |
Try changing the line:
PHP Code:
PHP Code:
|
Thank you Mark it works now.
I tried before inject bburl in this line PHP Code:
just note I not use template I added the code to the plugin that I bought from BirdOPery5 (More Open Graph Images Gold) and now I have what I want exactly. |
Excellent! Glad to hear you now have it working as you want. :up:
|
Thank you for your appreciate help, without it I couldn't get things like I want, thank you more and more.
|
All times are GMT. The time now is 01:36 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|