Hi Vincent,
Thank you for your reply.
I did create “customer-area/templates” folder in my child-theme.
Found that the main page shown to the customer after the login page is managed by the file customer-page.template.php.
Now in this page it has this line:
$this->print_page_content( $args, $shortcode_content );
I assume that this is the line that creates the content of the page.
I have a private page made for example and also a private file, for some reason at the moment I can only see the link to the page and not to the file for some reason.
I have debug mode on, and found that the file customer-private-pages-content.template.php has the following:
while ( $content_query->have_posts() ) {
$content_query->the_post();
global $post;
include( $item_template );
}
How should I update it or actually modify the $content_query or $item_template to include the files, and also to show the categories instead of the pages?
Am I in the right direction?