Home New Guten Forums WoodMart support forum Search widget elemtor

Search widget elemtor

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #661795

    jordi
    Participant

    Hi is it possible search pages, posts and products with search widget? Like search from header.

    Thanks

    #661807

    Luke Nielsen
    Keymaster

    Hello,

    You can try to use the “Ajax search” element – https://prnt.sc/PxGkuiaXzDiO

    If you have any additional questions, let me know.

    Kind Regards

    #661808

    jordi
    Participant

    I used but I can’t select all pages, posts, products… like search in header.

    #661832

    Luke Nielsen
    Keymaster

    Hello,

    Please add the following code snippet to the functions.php in the child theme to switch to “All post types” for search forms added to pages.

    add_action( 'elementor/frontend/before_render', function ( $element ) {
    	if ( $element->get_name() === 'wd_search' ) {
    		$settings = $element->get_settings();
    
    		$settings['search_post_type'] = 'any';
    
    		$element->set_settings($settings);
    	}
    } );

    Kind Regards

    #661836

    jordi
    Participant

    Perfect, thank you very much

    #661837

    Luke Nielsen
    Keymaster

    Hello,

    Thank you for confirming that the solution works for you. If you have any more queries or need further assistance, feel free to reach out to us.

    Regards

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