Remove specific columns in the coupon list in admin of WooCommerce

Remove specific columns in the coupon list in admin of WooCommerce on your child site.

Snippet Type

Execute on Child Sites

Snippet

function filter_manage_edit_shop_coupon_columns( $columns ) {
    // Remove
    unset( $columns['products'] );
    unset( $columns['amount'] );    

    return $columns;
}
add_filter( 'manage_edit-shop_coupon_columns', 'filter_manage_edit_shop_coupon_columns', 10, 1 );

Example for the two admin columns removed from showing.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.