1. The flow I am looking for is that all nav items both from $nav_items list and my-account are rendered in my-account page. As an example, here’s snippet from woocommerce/templates/myaccount/dashboard.php
<p>
<?php
/* translators: 1: Orders URL 2: Address URL 3: Account URL. */
$dashboard_desc = __( 'From your account dashboard you can view your <a href="%1$s">recent orders</a>, manage your <a href="%2$s">billing address</a>, and <a href="%3$s">edit your password and account details</a>.', 'woocommerce' );
if ( wc_shipping_enabled() ) {
/* translators: 1: Orders URL 2: Addresses URL 3: Account URL. */
$dashboard_desc = __( 'From your account dashboard you can view your <a href="%1$s">recent orders</a>, manage your <a href="%2$s">shipping and billing addresses</a>, and <a href="%3$s">edit your password and account details</a>.', 'woocommerce' );
}
printf(
wp_kses( $dashboard_desc, $allowed_html ),
esc_url( wc_get_endpoint_url( 'orders' ) ),
esc_url( wc_get_endpoint_url( 'edit-address' ) ),
esc_url( wc_get_endpoint_url( 'edit-account' ) )
<!-- HERE RENDERING MVX DASHBOARD NAV ITEMS -->
);
?>
</p>
And the key question is how am I supposed to do it since I dislike to render all of these nav links (let us say for now all apart from the Dashboard one).
In addition what is the way of providing CSS there? I tried standard <link rel=”stylesheet” type=”text/css” href=”my-style.css”> but it doesn’t seem to work.
2. I think we have misunderstood on that point.
I would like to use WooCommerce registration option because I have it as popup in header and that’s easier to use for users. But because all of my users are vendors I would like that after registration they will be redirected to shop wizard (as it is happening where registated via MVX registration option). Also in that regard the auto approval doesn’t work, but I am able to approve a vendor manually with MVX page for that.






