Commented out code to change on-hold status name
authorChuck Scott <cscott@gaslightmedia.com>
Fri, 5 Feb 2016 18:24:38 +0000 (13:24 -0500)
committerChuck Scott <cscott@gaslightmedia.com>
Fri, 5 Feb 2016 18:24:38 +0000 (13:24 -0500)
functions.php

index c7bde4c..424b056 100755 (executable)
@@ -267,6 +267,9 @@ if ( ! current_user_can('manage_options') && ! current_user_can('edit_product')
 }
 
 // Change "Processing" to "New Order"
+/*
+ *  Not implementing this right now.
+ *
 function glm_change_order_status_names( $order_statuses ) {
 
     $new_order_statuses = array();
@@ -282,5 +285,6 @@ function glm_change_order_status_names( $order_statuses ) {
     return $order_statuses;
 }
 add_filter( 'wc_order_statuses', 'glm_change_order_status_names' );
+*/
 
 ?>