Home Forums WoodMart support forum Search Box Results

Search Box Results

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #369037

    Lion
    Participant

    Sorry, the previous thread was closed, and I had to post here again.
    My problem is not solved yet. When I search sth in the search box and press enter, products show instead of pages. Please see the attached:
    https://ibb.co/4ggR2Gj

    Please see ticket #368049

    Attachments:
    You must be logged in to view attached files.
    #369711

    Hello,

    Sorry for the delay.

    Please add this code to the functions.php of the child theme:

    function mySearchFilter($query) {
    	if ($query->is_search && isset( $_GET['post_type'] ) ) {
    		$query->set('post_type', $_GET['post_type'] );
    	}
    	return $query;
    }
    
    add_filter('pre_get_posts','mySearchFilter');

    If you have any questions please feel free to contact us.

    Best Regards

    #369713

    Lion
    Participant

    I did. Unfortunately the problem is not resolved.

    #369731

    Lion
    Participant

    Supposedly, you had set the default theme to parent theme. Now, I switched it to the child theme, and the problem is solved. Thanks.

    #369807

    You are welcome! We are here to help.

    Wish you a wonderful day!

Viewing 5 posts - 1 through 5 (of 5 total)