Claim your freedom to choose the perfect partner for your multi-vendor journey.

FREEDOM25

Celebrate the festive season by giving your marketplace a powerful lift!

FESTIVE20

5.0.0
Something big is coming for marketplace admins… MultiVendorX 5.0 is almost here. Are you ready?
Be the first to explore all the game-changing features!
Power your marketplace dreams with unbeatable Black Friday deals!

MVXBLACK30

Supercharge your marketplace vision with unstoppable Cyber Monday deals!

MVXCYBER30

Holiday cheer, bigger savings
Take 25% off-because your marketplace deserves a gift too.

happyholiday

View Categories

Hide order /suborder column from the my account page

Add the below codes in the functions.php file of your current active theme to hide the order/ suborder column from WooCommerce My account page –

/**
 * Remove Order ID column from My Account page
 */
function remove_order_id_column( $columns ) {
    unset( $columns['order-number'] );
    return $columns;
}
add_filter( 'woocommerce_account_orders_columns', 'remove_order_id_column' );
/* Remove Suborder from coustomer my-account page */
add_filter( 'woocommerce_account_orders_columns' , function( $suborders ) {
    unset( $suborders['mvx_suborder'] );
    return $suborders;
  } , 999 );

Leave a Reply

Shopping Cart
Scroll to Top