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

How to show hide columns in the Stock Manager Table?

Suppose you want to remove the “name” field from “Inventory Manager”. Then add the following code in the function.php of your theme to remove this : ‘

add_filter( 'set_products_data_headers', 'remove_name_from_table' );

function remove_name_from_table( $table_header ) {
    unset( $table_header[ 'name' ] );
    return $table_header;
}

add_filter('get_prepared_product_data', 'remove_name_from_table_body', 3);

function remove_name_from_table_body( $table_data, $product_id, $product ) {
    unset($table_data['name']);
    return $table_data;
}

Leave a Reply

Shopping Cart
Scroll to Top