Hi deuns26, can you explain your question a bit further. I am not sure what you mean?
Thank you
Sorry for my English , it is possible to create a link from the menu on the redirection page for the member?
because if the member leaves the redirect page can not find her.
to find the redirect page is forced to disconnect and reconnect.
Hi, let me know if this is what you mean.
What you want to know is, if there is a way to add a link to the menu that the members see when they log in which points to the redirect page added to the member? Is is what you mean?
Okay thank you for reporting back. The plugin developers will investigate further your request.
Thank you
Thank you for your work , I expect from you.
hello, do you have any new?
There is no existing option for it as the menu items come from your theme.
Our plugin has functions that you can use to create custom code (that changes your navigation menu item):
https://simple-membership-plugin.com/simple-membership-miscellaneous-php-tweaks/
Thank,
I find a code that works but is it possible to have a shortcut, I have a lot of line with 400 member.
it is necessary that ‘echo’, reference link after connection.
<?php
$member_id = SwpmMemberUtils::get_logged_in_members_id();
if ($member_id == "1"){
echo "To find your private page, voici le lien : <a href=\"http://pagemembre1.com/\">Ma Page Privé</a>";
}
if ($member_id == "2"){
echo "To find your private page, voici le lien : <a href=\"http://Lien2.com/\">Ma Page Privé</a>";
}
if ($member_id == "3"){
echo "To find your private page, voici le lien : <a href=\"http://Lien3.com/\">Ma Page Privé</a>";
}
if ($member_id == "400"){
echo "Pour retrouver ma page privé, voici le lien 5 : <a href=\"http://Lien400.com/\">Ma Page Privé</a>";
}
?>
Thank you for your work , I expect from you.