Code-Snippets-Functions/Execute a function on a child site/WooCommerce/checkout-payment-section-heading.txt

5 lines
173 B
Text

add_action( 'woocommerce_review_order_before_payment', 'wc_checkout_payment_options_title' );
function wc_checkout_payment_options_title() {
echo '<h3>Pay Now</h3>';
}