Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author WC Lovers

    (@wclovers)

    Please add this snippet to your site for the purpose-

    add_filter( 'wcfm_screen_manager_data_columns', function( $wcfm_screen_manager_data, $type ) {
    	if( wcfm_is_vendor() ) {
    		if( $type == 'orders' ) {
    			$wcfm_screen_manager_data[6] = 'yes';
    		}
    	}
      return $wcfm_screen_manager_data;
    }, 50, 2 );

    Add custom code(s) to your child theme’s functions.php
    In case you do not have child theme then add those using this plugin –?https://www.ads-software.com/plugins/code-snippets/

    Thread Starter fesaponet

    (@fesaponet)

    Hello again,

    Quick and effective answer.

    You’re great!!

    Thank you very much!!

    Plugin Author WC Lovers

    (@wclovers)

    You are always welcome ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove gross sales column in vendor orders listing’ is closed to new replies.