• Resolved ninievy

    (@ninievy)


    Hello,

    I use your plugin to search products on my website which is great.

    I would love to use it ALSO to select a product but instead of going to the product page on click, I would like to be able to use a custom URL with the product id in the URL.

    Is it possible to do this with your plugin ?

    Thank you very much

Viewing 1 replies (of 1 total)
  • Plugin Author Damian Góra

    (@damian-gora)

    Hello,

    This filter should help:

    
    add_filter('dgwt/wcas/product/permalink', function($permalink, $product_id){
    
    	// $permalink = 'your-custom-url';
    	
    	return $permalink;
    }, 10, 2);
    

    Best
    Damian Góra

Viewing 1 replies (of 1 total)

The topic ‘Custom URL on submit’ is closed to new replies.