How do I make a link that only a certin membership lever can click on and see? In other words If I only want silver members to click and view that link.
How do I make a link that only a certin membership lever can click on and see? In other words If I only want silver members to click and view that link.
If you want to show a link only for a special membership, try something like this where you want to place it:
and replace "yourmembershipname" with the name of the membeship and "yourlink" with your special link.PHP Code:$member['ID'] = (int)$_COOKIE['memberID'];
$memlink = getMemberMembershipInfo( $member['ID'] );
if ( $memlink['Name'] == 'yourmembershipname')
{
yourlink
}
If you try it this way, you should also restrict your new "only for spacial membership" page for all other members than "yourmembershipname" !
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks