Excellent… Almost there.
It did produce the ccap of videos, but added the array line.
I don’t code PHP, but I did this
<?php
$s2member_access_ccaps = get_user_field('s2member_access_ccaps');
print_r($s2member_access_ccaps);
echo '<ul>';
foreach ($s2member_access_ccaps as $ccap) {
echo '<li>'.$ccap.'</li>';
}
echo '</ul>';
?>
But the result is this:
Your Special Access: Array ( [0] => videos )
videos
Or if they had two ccaps
Your Special Access: Array ( [0] => books [1] => videos )
videos
books
I just need to get rid of the ARRAY line after the label
How?
(Thank so much)
V