main menu page redirects to user ID

One solution would be to create a page with a page template that gets all info based on the user ID. Then you can add that page to the menu. Something like this: <?php /* * Template Name: User Info */ get_header(); //Your code for getting the users id $user_id = ‘123’; //Output userinfo using … Read more

Display Users and user url’s

You could take a look at the contributors function included in Twenty Fourteen if ( ! function_exists( ‘twentyfourteen_list_authors’ ) ) : /** * Print a list of all site contributors who published at least one post. * * @since Twenty Fourteen 1.0 */ function twentyfourteen_list_authors() { $contributor_ids = get_users( array( ‘fields’ => ‘ID’, ‘orderby’ => … Read more

Should I use MultiSite for a subdomain based wp site?

As stated your use case seems suitable: multiple sites — check shared users — check WP multisite does this. However there aren’t that many details in your question beyond that. It is a guesswork to recommend for or against it for such a complicated site, without knowing requirements thoroughly.

Subscriber role – blank page

I found an answer. It is because the WooCommerce plugin which prevents users without edit_posts capability to display dashboard. Well, I think they should let you know that they are making this kind of change in WordPress default settings. Because you are not able to turn it off in WooCommerce settings.