Home Forums WoodMart support forum Trust badges under the checkout button on the checkout page.

Trust badges under the checkout button on the checkout page.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #236934

    akshaygavhane99
    Participant

    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)

    #236943

    Artem Temos
    Keymaster

    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

Viewing 2 posts - 1 through 2 (of 2 total)