Skip to content

Snippet: Add Heading on WooCommerce Checkout Before Payment Options

add_action( 'woocommerce_review_order_before_payment', function() {
	echo '<h3>' . esc_html__( 'Payment Options' ) . '</h3>';
} );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top