Question

I want to create a tab on my facebook page that links to my facebook group. Go to the page https://www.facebook.com/bettyrockershow

I have created an app tab and you can see there is one for the "betty rock you life facebook group" https://www.facebook.com/groups/bettyrockyourlife/

How do I set it so that it sends people to the facebook group when clicked?

Was it helpful?

Solution

You can add some Javascript redirect on the tab page itself.

<script language="javascript">
    top.location.href = "https://www.facebook.com/groups/bettyrockyourlife/"
</script>

Also, sometimes it's best from a UX standpoint to tell the user what is going on. Like setting a timer of a few seconds on the JS and placing a message on the page telling the user that the page will be redirecting elsewhere.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top