Please or Register to create posts and topics.

Hi when I share on social topic title and image not shown

when i press  share to facebook plugin

preview image is not shown from inside topic and

thanks for your help

Uploaded files:
  • Screenshot_1.png

Hey @fixu,

what plugin are you using to share your forum?

Need professional help with Asgaros Forum? Book an appointment with us at domra Web Solutions for setup and customization services. Learn more about our Toolbox for Asgaros Forum plugin to enhance your forum experience.
Quote from qualmy91 on March 24, 2021, 2:57 am

Hey @fixu,

what plugin are you using to share your forum?

Sassy Social Share

Thank you

Hey @fixu,

Sassy Social Share is not compatible with Asgaros Forum. To adjust the URLs for forum and topics you can use the following code:

add_filter('heateor_sss_target_share_url_filter', 'adjust_forum_url');

function adjust_forum_url ($post_url){
    global $asgarosforum;
    $forum_id = $asgarosforum->current_forum;
    $topic_id = $asgarosforum->current_topic;
    if ($forum_id && $topic_id){
        $post_url = $asgarosforum->rewrite->get_link('topic', $topic_id);
    } else if ($forum_id){
        $post_url = $asgarosforum->rewrite->get_link('forum', $forum_id);
    }
    return $post_url;
}

I will check with Thomas if we will add this to Asgaros Forum. You can follow the status at GitHub: https://github.com/Asgaros/asgaros-forum/issues/325

Asgaros has reacted to this post.
Asgaros
Need professional help with Asgaros Forum? Book an appointment with us at domra Web Solutions for setup and customization services. Learn more about our Toolbox for Asgaros Forum plugin to enhance your forum experience.