Skip to main content

How to enable Anonymous posting in LikeMinds Feed?

The LikeMinds Feed SDK provides users with the ability to post Anonymously. This feature can be turned on by passing isAnonymousPostAllowed prop to LMSocialFeed. Additionally, you can also provide hint text by passing hintTextForAnonymous prop. Take a look at below snippet for reference.

<LMSocialFeed
// Other props
isAnonymousPostAllowed={true}
hintTextForAnonymous="YOUR-HINT-TEXT"
></LMSocialFeed>
info

To get the list of all the required props, check out this guide.

Your users will be able to send post anonymously after this.