Home › Forums › WoodMart support forum › Layered nav error › Reply To: Layered nav error October 20, 2023 at 12:44 pm #505689 Artem TemosKeymaster Try to add the following PHP code snippet to the child theme functions.php file to fix this add_filter( 'woocommerce_widget_get_current_page_url', function ( $link ) { if ( is_wp_error( $link ) ) { $link = false; } return $link; } );