Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eMember › eMember – Public Profile Listing
Tagged: custom field list, member profile listing, profile listing, public profile active, shortcodes
Hi,
how can I view an additional membership level?
For example I need to show only the membership level 2 and 3, and not 1 and 4; how can I do?
Thanks for reply.
You want to list users from a secondary level or you want to show the user’s secondary level in the details page?
I have 3 membership level, free, silver and gold; I want to list in same table the silver and gold users, and not the the free users!
Thanks,
Lets say the ID of silver level is 3 and Gold is 4. Now you can try the following shortcode to list members from level 3 and 4 only:
[emember_extended_summary_list fields="user_name,first_name" levels="3,4"]
Or add the following two shortcodes in that same page (one shortcode below another):
[emember_extended_summary_list fields="user_name,first_name" levels="3"]
[emember_extended_summary_list fields="user_name,first_name" levels="4"]
Works great!
Thank you admin!