translation of order head in email body
-
Hello,
the Plugin is working really well. I try to finetuning the Email body text.
Especially the head of the product table with the columns named: Product/Quantity/Price and Subtotal/Shipping/Payment method.
In the Email template, which i copied to the child theme i found this php script:
<?php if ( $totals = $order->get_order_item_totals() ) {
$i = 0;
foreach ( $totals as $total ) {
$i++; ?>
<tr>
<th class="td" scope="row" colspan="2" style="text-align: left; <?php if ( $i == 1 ) echo 'border-top-width: 4px;'; ?>"><?php echo $total['label']; ?></th>
<td class="td" style="text-align: left; <?php if ( $i == 1 ) echo 'border-top-width: 4px;'; ?>"><?php echo $total['value']; ?></td>
</tr><?php
}
}
?>So, its picking automaticly the data from somewhere. The normal order mails are translated correctly and i dont know where to look for it anymore ??
Im thankful for some help here.The page I need help with: [log in to see the link]
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.