Monday, December 12, 2016

Change the WooCommerce thank you page text – after complete order thank you page

Easily change the text on the WooCommerce thank you page without editing template or plugin files.


WooCommerce thank you page default text is, “Thank you. Your order has been received.” 


Lets you change it easily. Copy this below code in your theme functions.php file.


 <?php  
  /**   
  * change the text on the WooCommerce thank you page   
  * @link https://wpsohel.blogspot.com   
  */  
  function wpsohel_order_complete_tnx_msg( $text, $order ) {  
      $new = $text . 'Thank you for your wellness purchase! Your order has been received and will be delivered to you shortly. If you have any questions, please don’t hesitate to ask. and will be happy to assist you in any way we can.';  
      return $new;  
  }  
  add_filter('woocommerce_thankyou_order_received_text', 'wpsohel_order_complete_tnx_msg', 10, 2 );  
 ?>  

No comments: