Hi @lavendervu2510, I tried everything that I can think of, but I still can’t seem to get it working.
I removed lines 47-71 from style-3.php
<!--[if mso | IE]>
<table width="100%" role="presentation" border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="" valign='middle' style="vertical-align:middle;width:<?php echo esc_attr($img_width)?>px;"><![endif]-->
<div class='viwec-responsive ' style='vertical-align:middle;display:inline-block;width: <?php echo esc_attr( $img_width ) ?>px;'>
<table align="left" width="100%" border='0' cellpadding='0' cellspacing='0' style="border-collapse: collapse;font-size: 0;">
<tr>
<td valign="middle" style="font-size: 0;">
<a href="<?php echo esc_url( $p_url ) ?>">
<?php
if ( function_exists( 'fpd_get_option' ) && fpd_get_option( 'fpd_order_product_thumbnail' ) ) {
ob_start();
do_action( 'woocommerce_order_item_meta_start', $item_id, $item, $order, false );
$img = ob_get_clean();
$img = str_replace( [ 'border: 1px solid #ccc; float: left; margin-right: 5px; margin-bottom: 5px; max-width: 30%;' ], '', trim( $img ) );
echo wp_kses( $img, viwec_allowed_html() );
} else {
echo apply_filters( 'viwec_order_item_thumbnail', $image, $item );// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
?>
</a>
</td>
</tr>
</table>
</div>
The documentation is unclear/contradictory as to where to file is supposed to be located, so I tried everywhere that seemed logical–
? /child-theme/email-template-customizer/style-3.php
? /child-theme/email-template-customizer/order-items/style-3.php
? /child-theme/email-template-customizer/templates/style-3.php
? /child-theme/email-template-customizer/templates/order-items/style-3.php
? /child-theme/email-template-customizer/templates/includes/style-3.php
? /child-theme/email-template-customizer/includes/templates/style-3.php
? /child-theme/email-template-customizer/includes/templates/order-items/style-3.php
No dice.