Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!
Merry Christmas and Happy Holidays! 🎄
Oct 08, 2024 9:34 pm
Whenever I post my main forum link on LinkedIn, it pulls a member’s avatar image.
https://renewableheatinghub.co.uk/forums
2 Replies
Oct 08, 2024 9:36 pm
I have done this already. It’s changed forum posts, but not my main URL as above.
function my_default_og_image( $image_url, $type ){
if( $type == 'og:image' && !$image_url){
return 'https://example.com/images/mylogo.jpg';
}
else{
return $image_url;
}
}
add_filter('wpforo_find_image_url', 'my_default_og_image', 10, 2);