remove orders
did found that function to remove order
but didn t work for me
function childtheme_show_order_remove_button() {
remove_action( 'admin_print_styles', 'appthemes_order_table_hide_elements' );
add_filter( 'manage_' . APPTHEMES_ORDER_PTYPE . '_posts_columns', 'childtheme_add_order_checkbox_column' );
}
add_action( 'after_setup_theme', 'childtheme_show_order_remove_button', 1000 );
function childtheme_add_order_checkbox_column( $columns ) {
$columns = array_merge( array( 'cb' => '<input type="checkbox" />' ), $columns );
return $columns;
}
any ideas?
Computers are incredibly fast, accurate, and stupid: humans are incredibly slow, inaccurate and brilliant; together they are powerful beyond imagination.