• axelra82

    (@axelra82)


    Previous to the 3.0.1 release I used the following code to display the time with the date in admin backend for order list view (this function resides in functions.php):
    function admin_column_time() {
    global $post;
    $time = get_post_time( __( ‘Y-m-d H:i:s’, ‘woocommerce’ ), $post );
    return $time;
    }add_filter( ‘post_date_column_time’, ‘admin_column_time’ );

    After updating to 3.0.1 this stopped working. Any suggestions on how to get it back? Sometimes it’s very useful to be able to see the time for the orders (without having to go in to the order) directly in the list view (table). The time element container seems to have changed as well.

  • The topic ‘Backend orders time in date column’ is closed to new replies.