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)
February 16, 2022 at 9:26 am
#36756
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}";
}