Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi Marco2014,

    I’m also using WooCommerce 2.2 and I see no issues on the Orders page.
    Could you share a screenshot of your Orders page?

    I believe this is either a compatibility issue with another plugin, or an issue with your hosting. Try checking your error logs, if you can see anything related to this.

    Hope this helps!

    Plugin Contributor royho

    (@royho)

    Hi Marco2014,

    If you’re referring to list of orders on orders page, try clicking on the top right “Screen Options” and make sure “Date” is checked. See here http://cld.wthms.co/rJhE

    Thread Starter Marco2014

    (@marco2014)

    Hi guys,
    thanks for replying me so soon.

    I found the problem!

    As I needed the European date format, I used the following code to
    set the EU date:

    add_filter( ‘post_date_column_time’ , ‘woo_custom_post_date_column_time’ );
    function woo_custom_post_date_column_time( $post ) {
    $h_time = get_the_time( __( ‘d/m/Y’, ‘woocommerce’ ), $post );
    return $h_time;
    }

    I commented it and got back the date in the WooCommerce Order panel.

    Actually, the EU date can be set from the WP General Setting panel and works for WooCommerce and its plugins. There’s no need of adding code.

    Thanks again for your support.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘No date shown in Orders panel’ is closed to new replies.