Is it possible to display the total active subscribers count in Amember? Also, is it possible to display total user count: both active and expired? How can that be be applied on a PHP page? Thanks.
Doesnt it show up on the amember admin screen- right middle side? Also, you can go to email, send to active users, will give you a count. David
Actually I was looking forward displaying it on the website. I figured out a way of doing so in Wordpress Integration, but for general PHP pages it's not the same.
In php you can use this code: PHP: include "/full/path/to/amember/config.inc.php";$active = $db->query_one("select count(*) from amember_members where status = 1");$total = $db->query_one("select count(*) from amember_members where status in (1,2)");