woocommerce_is_account_page

woocommerce_is_account_page

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

apply_filters('woocommerce_is_account_page') is found 1 times:

  • /includes/wc-conditional-functions.php line 173
    	 */
    	function is_account_page() {
    		$page_id = wc_get_page_id( 'myaccount' );
    
    		return ( $page_id && is_page( $page_id ) ) || wc_post_content_has_shortcode( 'woocommerce_my_account' ) || apply_filters( 'woocommerce_is_account_page', false );
    	}
    }
    
    if ( ! function_exists( 'is_view_order_page' ) ) {
    
    	/**