Hello I am having the same issue @zorem. But my php HTML for the Completed email is showing a section of code in the shipping tracking section that references our previous shipping plugin “shipwire” even after I deactivated it. I cannot get the HTML to update to include reference to the tracking coming from your plugin. See code below. Can you help please?
<?php $package_count = 0; ?>
<?php foreach ( $SwOrder->tracking_packages as $id => $package ) : ?>
<tr>
<td style=”text-align:left; font-family:’Lucida Sans’,serif;”>
<?php if ( 1 < count( $SwOrder->tracking_packages ) ) : ?>
<p style=”color:#000000; font-size:14px; margin-top:0;”><?php printf( __( ‘Package %s’, ‘woocommerce-shipwire’ ), $package_count + 1 ); ?></p>
<?php endif; ?>
<?php $package_count++; ?>
<?php $tracking_number = esc_html( $package[‘tracking_number’] ); ?>
<?php $tracking_number = ( $package[‘url’] ) ? ‘‘ . $tracking_number . ‘‘ : $tracking_number; ?>
<p style=”color:#000000; font-size:14px; margin-top:0;”><?php echo $package[‘carrier’]; ?> – <?php echo $tracking_number; ?></p>