Community Support Forums — WordPress® ( Users Helping Users ) — 2010-07-07T18:05:59-05:00 http://www.primothemes.com/forums/feed.php?f=4&t=329 2010-07-07T18:05:59-05:00 http://www.primothemes.com/forums/viewtopic.php?t=329&p=1435#p1435 <![CDATA[Re: Answers to Custom Questions]]>

How do I, as administrator, get all the answers to my user's questions? Ideally, this should either be a csv file or even better a report from the database that can be displayed to members as a page.

With the free version of s2Member, you can use the Profile Editing Panel supplied by the s2Member plugin. This is detailed under: s2Member -> General Options -> Profile Modifications. The Profile Modification Panel will make all of these details available to a Member, and even let them modify their answers if they need to.

Now, with the s2Member Pro Module, you can also export the data into a CSV file. The s2Member Pro Module comes with a very advanced Import/Export system that also supports Custom Fields. http://www.s2member.com/

In either version, you *could* also use PHP to pull details for a specific User.
Code:
<?php
$user = new WP_User("johndoe22");
$fields = get_usermeta($user->ID, "s2member_custom_fields");
print_r($fields);
?>

Statistics: Posted by Jason Caldwell — July 7th, 2010, 6:05 pm


]]>
2010-07-03T10:25:15-05:00 http://www.primothemes.com/forums/viewtopic.php?t=329&p=1376#p1376 <![CDATA[Answers to Custom Questions]]>

Statistics: Posted by DickElkinwnrta — July 3rd, 2010, 10:25 am


]]>