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

Reply To: Search result link change

#8477
Ernest MarcinkoErnest Marcinko
Keymaster

Okays, I think I have a solution for you.

Put this code to the functions.php file in your active theme directory:

[php]add_filter( ‘asp_results’, ‘asp_links_to_addtocart’, 1, 1 );

function asp_links_to_addtocart( $results ) {
foreach ($results as $k=>$r) {
// Modify the URL
$results[$k]->link = "/?add-to-cart=".$r->id."&quantity=1";
}
return $results;
}[/php]

That will change the results URLs to the add to cart WooCommerce URLs.