Hello @tkwpweb,
The custom posts are supposed to show up in the dashboard page by default. The dashboard page is a page where you can show all your custom post type posts.
The [wpuf_account] shortcode is unable to accept any parameter. So if you want to show the custom post type post in the account page, you have to add the following custom code in your child theme’s functions.php file:
add_filter( 'wpuf_account_sections', 'wpuf_my_page' );
function wpuf_my_page( $sections ) {
$sections = array_merge( $sections, array( array( 'slug' => 'my-page', 'label' => 'Custom Post' ) ) );
return $sections;
}
add_action( 'wpuf_account_content_my-page', 'wpuf_my_page_section', 10, 2 );
function wpuf_my_page_section( $sections, $current_section ) {
echo do_shortcode('[wpuf_dashboard post_type="custom_post_type"]');
}