I'm building a e-shop with woocommerce. Now i'm modifying the order_detail.php. I have changed the code this way. Now i have e blank page. Can somone please help me and explain what's wrong?
<?php if ( $show_purchase_note && $purchase_note )
{
<th>
<td><?php echo wpautop( do_shortcode( wp_kses_post( $purchase_note ) ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></td>
</th>
}else
{
<td id="placeholder-table">
<div class="col grid-col large-8 grid-col-1-1">
<div class="banner-inner fill">
<div class="banner-bg fill">
<div class="bg fill bg-fill bg-loaded">
</div>
</div>
</div>
</div>
</td>
}
?>