Hi, I would like to use the incremental content plugin to disply different "Groups" of content on different pages of my site within the the aMember protected folders. e.g. I have a section of my site that displays videos; I would like to have a page that shows only the incremental content available in the "Video" group set up within the incremental content plugin; there is another section for audio and on this page I would like to display only the incremental content available in the "Audio" group - and so on. Is this possible? Cheers, Peter
This won't work? http://www.yoursite.com/amember/plugins/protect/incremental_content/?product_id=1 Its also possible to do it using the session method on a php page. <?php session_start(); if ($_SESSION['_amember_links']) { echo "<ul>"; foreach ($_SESSION['_amember_links'] as $link_id => $link) { echo "<li><a href=\"".$link['link_url']."\">".$link['link_title']."</a></li>"; } echo "</ul>"; } David