Plugin Kirim Resi
Updated on June 25, 2019 in Plugin
Premium  6 on June 25, 2019

1. Kalau mau merubah "Your Order has been shipped" menjadi "Pesanan Anda sudah dikirim", bagaimana caranya? dan bagaimana caranya merubah Subject emailnya?

Terima kasih

  • Liked by
Support Hours:
Weekdays: 09.00 - 17.00
Weekend: Off
Sorry, our support is not available at this time. We will reply at the next working hour.

By using the forum you are agree with tonjoo studio license agreement

Moderator 0 on June 25, 2019

Halo,
Untuk merubah template silakan edit file order-shipped.php yang terletak di:
plugin-resi/templates/email/order-shipped.php

Silakan edit pada baris ke-23 pada bagian kalimat "Your Order has been shipped" menjadi "Pesanan Anda sudah dikirim"

  • Liked by
Cancel
Support Hours:
Weekdays: 09.00 - 17.00
Weekend: Off
Sorry, our support is not available at this time. We will reply at the next working hour.

By using the forum you are agree with tonjoo studio license agreement

Message :
Premium  1 on June 25, 2019

Pada bagian mana ya mas Agep?

vi order-shipped.php

<?php
/**
* Admin new order email
*
* @author WooThemes
* @package WooCommerce/Templates/Emails/HTML
* @version 2.4.0
*/

if ( ! defined( ‘ABSPATH’ ) ) {
exit; // Exit if accessed directly
}

?>

<?php do_action( ‘woocommerce_email_header’, $email_heading ); ?>

<h2><a class="link" href="<?php echo admin_url( ‘post.php?post=’ . $order->id . ‘&action=edit’ ); ?>"><?php printf( __( ‘Order #%s’, ‘woocommerce’), $order->get_order_number() ); ?></a> (<?php printf( ‘<time datetime="%s">%s</time>’, date_i18n( ‘c’, strtotime( $order->order_date ) ), date_i18n( wc_date_format(), strtotime( $order->order_date ) ) ); ?>)</h2>
<?php
if( $sent_to_admin )
_e(‘Hi there. The shipping detail for your order is as follows: ‘,PLUGIN_RESI);
else
_e(‘Hallo, Pesanan Anda telah dikirim. Berikut detail informasinya : ‘,PLUGIN_RESI);
?>

<table class="td" cellspacing="0" cellpadding="6" style="width: 100%; font-family: ‘Helvetica Neue’, Helvetica, Roboto, Arial, sans-serif;" border="1">
<thead>
<tr>
<th class="td" scope="col" style="text-align:left;"><?php _e( ‘Kurir Pengiriman’, PLUGIN_RESI); ?></th>
<th class="td" scope="col" style="text-align:left;"><?php _e( ‘Website’, PLUGIN_RESI); ?></th>
<th class="td" scope="col" style="text-align:left;"><?php _e( ‘Nomor Tracking’, PLUGIN_RESI ); ?></th>
</tr>
</thead>
<tbody>
<tr>
<?php
$name = get_post_meta($order->id,’plugin_resi_ekspedisi_nama’,true);
$url = get_post_meta( $order->id,’plugin_resi_ekspedisi_url’,true);
$resi = get_post_meta( $order->id,’plugin_resi_nomor_resi’,true);

$name = $name != ” ? $name : ‘Example Express’;
$url = $url != ” ? $url : ‘http://www.example.com’;
$resi = $resi != ” ? $resi : ‘1234567890’;
?>

<td class="td" scope="col" ><?php echo $name ?></td>
<td class="td" scope="col" >
<a href="<?php echo $url ?>"><?php echo $url ?></a>
</td>
<td class="td" scope="col" ><?php echo $resi ?></td>
</tr>
</tbody>
</table>
<?php do_action( ‘woocommerce_email_customer_details’, $order, $sent_to_admin, $plain_text ); ?>

on June 25, 2019

Hi,
Pada file order-shipped.php di baris ke-23,
http://prntscr.com/o69qkc

Show more replies
  • Liked by
Cancel
Support Hours:
Weekdays: 09.00 - 17.00
Weekend: Off
Sorry, our support is not available at this time. We will reply at the next working hour.

By using the forum you are agree with tonjoo studio license agreement

Message :
Premium  1 on June 25, 2019

Maksud kami yang pada bagian ini mas :
https://prnt.sc/o69s26

on June 25, 2019

Untuk merubah yang bagian Order #xxx, ada di baris ke 18
http://prntscr.com/o69znb

Show more replies
  • Liked by
Cancel
Support Hours:
Weekdays: 09.00 - 17.00
Weekend: Off
Sorry, our support is not available at this time. We will reply at the next working hour.

By using the forum you are agree with tonjoo studio license agreement

Message :
Premium  0 on June 25, 2019

Terima kasih banyak mas atas bantuannya..

  • Liked by
Cancel
Support Hours:
Weekdays: 09.00 - 17.00
Weekend: Off
Sorry, our support is not available at this time. We will reply at the next working hour.

By using the forum you are agree with tonjoo studio license agreement

Message :
Loading more replies
You are not logged in

Please login here or simply sign up here .