Quantcast
Channel: Clan VPS Host » woocommerce
Viewing all articles
Browse latest Browse all 195

How to redirect only for products of a given date

$
0
0

I have some products published on 24 october 2014how can I check the date of product and then change add to cart link for this product? I have this code in foonctions.php: add_filter( 'woocommerce_add_to_cart_redirect', 'custom_add_to_cart_redirect' );function custom_add_to_cart_redirect() { return 'http://mylink.com/28653'; } Solution: I think you could use filter 'woocommerce_add_cart_item' http://hookr.io/plugins/woocommerce/2.4.9/filters/woocommerce_add_cart_item/ add_filter( 'woocommerce_add_to_cart_redirect', 'rv_redirect_on_add_to_cart' );function rv_redirect_on_add_to_cart() … Continue reading How to redirect only for products of a given date

The post How to redirect only for products of a given date appeared first on Clan VPS Host.


Viewing all articles
Browse latest Browse all 195

Trending Articles