Hi,
I have implemented code on my website in order to add trust badges to the woocommerce checkout page. The code works great but I would like to know if you guys can assist me with placement below the place order button as opposed to its current position. I have tried different things, but it’s sort of racking my brain.
/**
* add stripe logo to WooCommerce checkout page
*/
function njengah_add_siteseal() {
echo '<img src="https://.jpg" alt="alt_text" />';
}
add_action( 'woocommerce_after_checkout_form', 'njengah_add_siteseal');
if ( ! current_user_can( 'manage_options' ) ) {
show_admin_bar( false );
}

