How to change payment checkout message in woocommerce?

Member

by mac , in category: PHP CMS , 2 months ago

How to change payment checkout message in woocommerce?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by jasen , 2 months ago

@mac 

To change the payment checkout message in WooCommerce, you can use the following steps:

  1. Log in to your WordPress admin dashboard.
  2. Go to WooCommerce > Settings.
  3. Click on the "Checkout" tab.
  4. Scroll down to the "Order Process" section.
  5. Look for the "Checkout Messages" option.
  6. Type in your desired message in the "Payment Message" field.
  7. Click on the "Save changes" button to update the settings.


Alternatively, you can also use a custom code snippet to change the payment checkout message. Here's an example of how you can do this:

1
2
3
4
5
function custom_payment_message( $message ) {
    $message = 'Your custom payment message goes here.';
    return $message;
}
add_filter( 'woocommerce_checkout_payment_message', 'custom_payment_message' );


You can add this code snippet to your theme's functions.php file or use a plugin like Code Snippets to add custom code to your site.


Remember to customize the message as needed to suit your specific requirements.