Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Inserting shortcode into search.php › Reply To: Inserting shortcode into search.php
January 11, 2017 at 3:56 pm
#11565
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.