This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Inserting shortcode into search.php

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Inserting shortcode into search.php Reply To: Inserting shortcode into search.php

#11565
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

The do_shortcode() function call must be echoed, so try changing this line:

[php]do_shortcode( ‘wpdreams_ajaxsearchpro id=4’ );[/php]

to this:

[php]echo do_shortcode( ‘[wpdreams_ajaxsearchpro id=4]‘ );[/php]

That should give you an output.