Home Forums WoodMart support forum Layered nav error Reply To: Layered nav error

#505689

Artem Temos
Keymaster

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;
    }
);