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

Reply To: Implementing Shortcode Into Theme

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Implementing Shortcode Into Theme Reply To: Implementing Shortcode Into Theme

#9630
Ernest MarcinkoErnest Marcinko
Keymaster

Hi!

I think I have found something. The theme uses the same filter to override the search form. It’s probably executed later then the plugin filter, so it’s simply overwritten.

Can you try disabling line 341, which should be:

[php]add_filter( ‘get_search_form’, ‘road_search_form’ );[/php]

to disable, change that to:

[php]//add_filter( ‘get_search_form’, ‘road_search_form’ );[/php]

or you can remove it, if you prefer that. Let’s hope this changes something.