Trust badges under the checkout button on the checkout page.
-
I was wondering if we can add trust badges below the checkout button?
screenshot of the similar picture that I imagine. (https://prnt.sc/v960hi)
Hello,
There is no such function in WooCommerce by default. But you can do this with a simple PHP code. Add the following snippet to the functions.php file in your child theme
add_action(
'woocommerce_after_cart_totals',
function () {
echo do_shortcode( '[html_block id="351"]' );
}
);
You will need to replace 351
to some of your HTML Blocks ids. Then, put your image to that HTML Block using WPBakery page builder or Elementor.
Kind Regards