mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
https://stackoverflow.com/questions/76646931/how-to-remove-woocommerce-customer-details-from-order-received-page/76648743
8 lines
377 B
Text
8 lines
377 B
Text
add_filter( 'wc_get_template', 'hide_order_recieved_customer_details', 10 , 1 );
|
|
function hide_order_recieved_customer_details( $template_name ) {
|
|
// Targeting thankyou page and the customer details
|
|
if( is_wc_endpoint_url( 'order-received' ) && strpos($template_name, 'order-details-customer.php') !== false ) {
|
|
return false;
|
|
}
|
|
return $template_name;
|
|
}
|