Lack of interest Popup a page after thread start, letting user share the created thread on socials

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.

Jimmy Vu

Member
In order to encourage users to share threads on social networks, it would be great to have this feature, allowing thread makers to see the social sharing choices right after creating the threads.

Any idea on how to do that?
 
Upvote 0
This suggestion has been closed. Votes are no longer accepted.
I like this idea. A quick/dirty way to sort of get there is to show a prominent "Share your post to help getting replies" on the thread_view page based on certain conditions. After posting, the user will be redirected to the thread view.

This conditional will show the more prominent share buttons only to the thread author while there are no replies:

<xf:if is="$thread.reply_count==0 and $xf.visitor.username==$thread.username">
Show Prominent Share Social Buttons
</xf:if>
 
Thank you
I like this idea. A quick/dirty way to sort of get there is to show a prominent "Share your post to help getting replies" on the thread_view page based on certain conditions. After posting, the user will be redirected to the thread view.

This conditional will show the more prominent share buttons only to the thread author while there are no replies:

<xf:if is="$thread.reply_count==0 and $xf.visitor.username==$thread.username">
Show Prominent Share Social Buttons
</xf:if>
Thank you very much. It works
 
Top Bottom