Viewing 4 replies - 1 through 4 (of 4 total)
  • Use this

    function wpb_woo_my_account_order() {
    	$myorder = array(
    		'my-custom-endpoint' => __( 'My Stuff', 'woocommerce' ),
    		'edit-account'       => __( 'Change My Details', 'woocommerce' ),
    		'dashboard'          => __( 'Dashboard', 'woocommerce' ),
    		'orders'             => __( 'Orders', 'woocommerce' ),
    		'downloads'          => __( 'Download MP4s', 'woocommerce' ),
    		'edit-address'       => __( 'Addresses', 'woocommerce' ),
    		'payment-methods'    => __( 'Payment Methods', 'woocommerce' ),
    		'customer-logout'    => __( 'Logout', 'woocommerce' ),
    	);
    	return $myorder;
    }
    add_filter ( 'woocommerce_account_menu_items', 'wpb_woo_my_account_order' );
    Thread Starter Shuvashish

    (@shuvashish)

    hI @serafinnyc,

    I am afraid, you misunderstand my point. I want to move horaizontal Menu nav on Vertical left Bar, not rearranging the menu item.
    https://prntscr.com/nn4339

    Shuvashish

    Just add CSS

    .woocommerce-MyAccount-navigation{
        width:100% !important;
    }
    .woocommerce-MyAccount-navigation li{
       display: inline-block !important;
    }
    dougaitken

    (@dougaitken)

    Automattic Happiness Engineer

    Hey there @shuvashish

    In your initial screenshot, having the My Account menu where you want, on the left hand side, is what is given out of the box – your current theme is controlling this layout.

    I’d recommend either changing your theme or speaking the theme developer of your current theme to find out how you can change this.

    We haven’t heard back from you in a while after Stef’s CSS suggestion, so I’m going to mark this as resolved – if you have any further questions, you can start a new thread.

    Thanks,

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Customizing My Account Manu’ is closed to new replies.