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

Reply To: form action to external website (no ajax results needed)

Home Forums Product Support Forums Ajax Search Pro for WordPress Support form action to external website (no ajax results needed) Reply To: form action to external website (no ajax results needed)

#36756
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

Sure – not via an option, but a small custom code snippet. This should do the trick:

add_filter('asp_redirect_url', 'custom_asp_redirect_url', 10, 1);
function custom_asp_redirect_url($url) {
	return "https://externalwebsite.com/search?q={phrase}";
}