Statistics: Posted by peeld — August 25th, 2011, 5:20 pm
Statistics: Posted by peeld — August 25th, 2011, 2:31 am
Statistics: Posted by svenl77 — December 1st, 2010, 8:18 am
Statistics: Posted by startasocialnetwork — November 27th, 2010, 12:48 pm
Statistics: Posted by startasocialnetwork — November 26th, 2010, 9:01 pm
Statistics: Posted by Jason Caldwell — September 9th, 2010, 10:59 pm
Statistics: Posted by BoweFrankema — September 9th, 2010, 12:14 pm
<?php
add_action ("template_redirect", "my_custom_capabilities", 1);
function my_custom_capabilities ()
{
if (bp_is_group_forum () && !current_user_can ("access_s2member_ccap_forums"))
{
header ("Location: " . S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL);
exit ();
}
}
?>
<?php
add_action ("template_redirect", "my_custom_capabilities", 1);
function my_custom_capabilities ()
{
if (fnmatch ("/activity*", $_SERVER["REQUEST_URI"]) && !current_user_can ("access_s2member_ccap_activity"))
{
header ("Location: " . S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL);
exit ();
}
else if (fnmatch ("/forums*", $_SERVER["REQUEST_URI"]) && !current_user_can ("access_s2member_ccap_forums"))
{
header ("Location: " . S2MEMBER_MEMBERSHIP_OPTIONS_PAGE_URL);
exit ();
}
}
?>
Statistics: Posted by Jason Caldwell — September 7th, 2010, 10:14 pm
Statistics: Posted by BoweFrankema — September 6th, 2010, 7:09 am