• we are using admin columns pro to add columns from custom fields. the sorting option is overridden by my wp cusotomize. if i disable the wp customize plugin the columns are sortable.

Viewing 1 replies (of 1 total)
  • Plugin Author gqevu6bsiz

    (@gqevu6bsiz)

    Hi @wabwmedia
    You can disable only sortable of My WP Customize.
    Please try add code to your functions.php of theme.

    
    add_filter( 'mywp_controller_is_do_function_admin_posts_sortable_request' , 'mywp_disable_sortable' );
    add_filter( 'mywp_controller_is_do_function_admin_posts_sortable_posts_orderby' , 'mywp_disable_sortable' );
    add_filter( 'mywp_controller_is_do_function_admin_posts_manage_columns_sortable' , 'mywp_disable_sortable' );
    
    function mywp_disable_sortable( $true ) {
    
      return false;
    
    }
    
Viewing 1 replies (of 1 total)
  • The topic ‘sorting’ is closed to new replies.