This depends on how you added the image in the first place. I added the trusted image as described here with a simple filter: https://quadlayers.com/woocommerce-checkout-hooks/
add_action( 'woocommerce_review_order_after_submit', 'quadlayers_trust_badges' );
function quadlayers_trust_badges() {
echo '<div class="trust-badges">
<img src="https://www.pngitem.com/pimgs/m/19-197703_transparent-secure-checkout-png-best-trust-badges-for.png">
</div><div class="trust-badge-message"><i>Trust badges above where hooked with the WooCommerce hook woocommerce_review_order_after_submit</i></div>';
}
PayPal Payments adds the smart buttons to this hook by default: woocommerce_review_order_after_payment
It seems the PayPal Checkout plugin was using a different hook: woocommerce_review_order_after_submit
And if you look at this page, you may notice that it’s below the other hooks.
https://www.businessbloomer.com/woocommerce-visual-hook-guide-checkout-page/
But with this filter you can use any hook you like:
add_filter('woocommerce_paypal_payments_checkout_button_renderer_hook', function() {
return 'woocommerce_review_order_before_submit';
});
So while the default may not be the same as with the Checkout plugin, you have the freedom the hook the buttons wherever you prefer them to be with the above-mentioned filter.
Kind regards,
Niklas