I am currently trying to make a custom .php page that will display some user information. One of those pieces of information is the products that the user is currently subscribed to. How do I do this? :\
You should take a look at the amember\member.php and amember\template\member.html for an idea of how to implement that (or use that page as a template and remove what you don't need)
Yeah, I've taken a look at both files and tried to figure it out. I'm not very keen with php. You wouldn't happen to know the code I need do you? I'd greatly appreciate it I've tried this, but it doesn't work (no surprise). PHP: <?php $p = $_SESSION['_amember_products']; print "<ul>"; foreach ('member_products' as $p){ print "<li><a href='".$p['url']."'>".$p['title']."</a></li>"; } print "</ul>";} ?>