skip to Main Content

Change Order received title issue in WooCommerce

I have the following code which works and changes the title of the 'order received' page: add_filter( 'the_title', 'woo_title_order_received', 10, 2 ); function woo_title_order_received( $title, $id ) { if ( function_exists( 'is_order_received_page' ) && is_order_received_page() && get_the_ID() === $id )…

VIEW QUESTION
Back To Top
Search