Please submit a private ticket if you need to share sensitive information, such as license details and admin credentials.

Okay
  Public Ticket #3812976
How to sort by Menu Order
Open

Comments

  •  2
    Trent started the conversation

    Hi there.

    Is it possible to disable the table header sorting on the "name" column.

    And then have the default sort order of the table to be the equivalent of menu_order. eg: the order you have dragged and dropped in the product attributes table in "configure terms".

    Thanks.

    =)

  •  1,297
    Dustin replied

    Hi Trent,

    Please add the custom code below. (How to add custom code? ↗):

    add_filter( 'wpcvt_datatable_params_arr', function ( $params ) {
    	$params['ordering'] = false;
    
    	return $params;
    } );

    Best regards,
    Dustin