Hello @bellawhite,
Yes, you can do that by adding the following custom code in your child theme’s functions.php file:
Say you want to show the product type posts on the account page, so adding the following code will show a label named “Products” where users can edit/view/delete their product type posts.
add_filter( 'wpuf_account_sections', 'wpuf_my_page' );
function wpuf_my_page( $sections ) {
$sections = array_merge( $sections, array( array( 'slug' => 'my-page', 'label' => 'Products' ) ) );
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="product"]');
}
If you want to show any other custom post type posts just change the post_type=”” in the function wpuf_my_page_section() and the ‘label’=> ” in the function wpuf_my_page() as you need.
Regards,