mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://stackoverflow.com/questions/78447717/how-to-customize-a-specific-notice-in-woocommerce-my-accout-orders
6 lines
277 B
Text
6 lines
277 B
Text
add_filter( 'gettext', function( $filtered_text, $original_text ){
|
|
if( is_wc_endpoint_url('orders') && 'No order has been made yet.' === $original_text ) {
|
|
$filtered_text = esc_html__('My custom text.', 'woocommerce');
|
|
}
|
|
return $filtered_text;
|
|
}, 100, 2 );
|