• Searched like stupid to find out why in my account (Mein Konto) > order details (Bestelldetails) there is a messup of german and english strings.
    “Order #123 was placed on 10. März 2015 and is currently Storniert.”
    It’s caused by /wp-content/plugins/woocommerce/templates/myaccount/view-order.php line 20 column 49 has a “#”
    <p class="order-info"><?php printf( __( 'Order #<mark class="order-number">%s</mark> was placed on <mark class="order-date">%s</mark> and is currently <mark class="order-status">%s</mark>.', 'woocommerce' ), $order->get_order_number(), date_i18n( get_option( 'date_format' ), strtotime( $order->order_date ) ), wc_get_order_status_name( $order->get_status() ) ); ?></p>
    But in german translation package the # is missing:
    Order <mark class=\"order-number\">%s</mark> was placed on <mark class=\"order-date\">%s</mark> and is currently <mark class=\"order-status\">%s</mark>.
    # should go after “Order #<mark class=…”

    https://wordpress.org/plugins/woocommerce-de/

  • The topic ‘my account view order Order #xxx was placed on 10. März 2015 and is currently’ is closed to new replies.