mardi 26 mars 2019

How to Change Woocommerce Order Tracking Status Text in Wordpress?

So, I need to Change The Order tracking status on account order page in woocommerce, I need to Change this text , its included on plugin/woocommerce/templates/myaccount/view-order.php

i need to change the 'Order #%1$s was placed on %2$s and is currently %3$s.', 'woocommerce' when i change it from view-order.php nothig changed, pls help


<p>
<?php
    /* translators: 1: order number 2: order date 3: order status */
    printf(
        __( 'Order #%1$s was placed on %2$s and is currently %3$s.', 'woocommerce' ),
        '<mark class="order-number">' . $order->get_order_number() . '</mark>',
        '<mark class="order-date">' . wc_format_datetime( $order->get_date_created() ) . '</mark>',
        '<mark class="order-status">' . wc_get_order_status_name( $order->get_status() ) . '</mark>'
    );
?>
</p>





Aucun commentaire:

Enregistrer un commentaire