Ok, I found something else that should be changed, according to CRED documentation.
instead of post_id, CRED uses ids. So, now I have:
[wpv-view name="CNSV Member Profile view" ids="'[types usermeta="member-profile-id" user_current="true"][/types]'"]
After turning on debug, I see that 'ids' = ' ' 235 ' '
(Current user's member-profile-id is 235 so, that is correct.)
But, I think the two single-quotes are messing it up.
Here is a snippet of the debug:
=========================
"[info: from line 379 in file wpv.class.php] array (
'name' => 'CNSV Member Profile view',
'ids' => ''235'',
)" CNSV%20Member%20Profile:1324
01:13:05.800 "[debug: from line 80 in file wpv-filter-query.php] array (
'posts_per_page' => 1,
'paged' => '1',
'post_type' =>
array (
0 => 'cnsv_member_profiles',
),
'order' => 'DESC',
'suppress_filters' => false,
'ignore_sticky_posts' => true,
'post__not_in' =>
array (
0 => 2052,
),
'orderby' => 'ID',
)" CNSV%20Member%20Profile:1328
01:13:05.800 "[debug: from line 81 in file wpv-filter-query.php] SELECT SQL_CALC_FOUND_ROWS wp_posts.ID FROM wp_posts WHERE 1=1 AND wp_posts.ID NOT IN (2052) AND wp_posts.post_type = 'cnsv_member_profiles' AND (wp_posts.post_status = 'publish' OR wp_posts.post_author = 2 AND wp_posts.post_status = 'private') ORDER BY wp_posts.ID DESC LIMIT 0, 1" CNSV%20Member%20Profile:1344
01:13:05.800 "[info: from line 761 in file wpv.class.php] Found 1 posts" CNSV%20Member%20Profile:1345
01:13:05.800 "[debug: from line 770 in file wpv.class.php] array (
0 =>
array (
'ID' => 1993,
'post_title' => 'Mickey Mouse',
),
)" CNSV%20Member%20Profile:1346
01:13:05.800 "[info: from line 498 in file wpv-template.class.php] Using Content Template: 2049 on post: 1993"
=========================
Jeff